From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2BAE210E0FE for ; Mon, 10 Jul 2023 06:16:27 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.27.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by linux.intel.com (Postfix) with ESMTPS id 690D9580D77 for ; Sun, 9 Jul 2023 23:16:25 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1qIkC7-002ong-1Y for igt-dev@lists.freedesktop.org; Mon, 10 Jul 2023 08:16:23 +0200 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Mon, 10 Jul 2023 08:16:21 +0200 Message-Id: <20230710061621.671843-7-mauro.chehab@linux.intel.com> In-Reply-To: <20230710061621.671843-1-mauro.chehab@linux.intel.com> References: <20230710061621.671843-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v4 6/6] tests/build: Generate and store an intel-ci.testlist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Mauro Carvalho Chehab Store a sorted testlist with tests that could be used to test the DRM core and the Intel drivers in a format that it would be expected by igt_runner. Signed-off-by: Mauro Carvalho Chehab --- tests/intel-ci/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/intel-ci/meson.build b/tests/intel-ci/meson.build index d5a6e4f47203..a1ec517f8da1 100644 --- a/tests/intel-ci/meson.build +++ b/tests/intel-ci/meson.build @@ -9,4 +9,12 @@ intelci_files = [ 'xe.blocklist.txt', ] +custom_target('intel-ci.testlist', + build_by_default : true, + command : ['sort', testlist_files], + install : true, + install_dir : datadir, + capture : true, + output : 'intel-ci.testlist') + install_data(sources : intelci_files, install_dir : datadir) -- 2.40.1