From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3A63510E53E for ; Wed, 12 Jul 2023 13:59:01 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.27.172]) (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 274C4580D5F for ; Wed, 12 Jul 2023 06:59:00 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1qJaMs-00411q-0j for igt-dev@lists.freedesktop.org; Wed, 12 Jul 2023 15:58:58 +0200 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Wed, 12 Jul 2023 15:58:42 +0200 Message-Id: <20230712135854.957128-2-mauro.chehab@linux.intel.com> In-Reply-To: <20230712135854.957128-1-mauro.chehab@linux.intel.com> References: <20230712135854.957128-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v2 01/13] 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. 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