From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7F18D10E5FC for ; Thu, 13 Jul 2023 07:51:01 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.27.144]) (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 1426A580C3B for ; Thu, 13 Jul 2023 00:51:00 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1qJr6I-0044TQ-04 for igt-dev@lists.freedesktop.org; Thu, 13 Jul 2023 09:50:58 +0200 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Thu, 13 Jul 2023 09:50:41 +0200 Message-Id: <20230713075054.970457-2-mauro.chehab@linux.intel.com> In-Reply-To: <20230713075054.970457-1-mauro.chehab@linux.intel.com> References: <20230713075054.970457-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v3 01/14] tests/intel-ci/meson.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. This is a preparation to simplify test_list.py checks to make it more generic. Reviewed-by: Kamil Konieczny Signed-off-by: Mauro Carvalho Chehab --- tests/intel-ci/meson.build | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/intel-ci/meson.build b/tests/intel-ci/meson.build index d5a6e4f47203..076f74d6b5d0 100644 --- a/tests/intel-ci/meson.build +++ b/tests/intel-ci/meson.build @@ -9,4 +9,13 @@ intelci_files = [ 'xe.blocklist.txt', ] +built_testlist = custom_target('intel-ci.testlist', + build_by_default : true, + command : ['sort', testlist_files], + install : true, + install_dir : datadir, + depends : testlist_files, + capture : true, + output : 'intel-ci.testlist') + install_data(sources : intelci_files, install_dir : datadir) -- 2.40.1