From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id B2E5310E0EF for ; Fri, 26 May 2023 06:46:29 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.1.196]) (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 214FB5807A3 for ; Thu, 25 May 2023 23:46:28 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1q2RDV-00C6om-2M for igt-dev@lists.freedesktop.org; Fri, 26 May 2023 08:46:25 +0200 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Fri, 26 May 2023 08:46:24 +0200 Message-Id: <20230526064624.2886063-3-mauro.chehab@linux.intel.com> In-Reply-To: <20230526064624.2886063-1-mauro.chehab@linux.intel.com> References: <20230526064624.2886063-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 2/2] testplan/meson.build: make it check for missing i915 documentation 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 Now that i915 is fully documented, check it at build time. Signed-off-by: Mauro Carvalho Chehab --- docs/testplan/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build index 6cd44be5ccd3..bf73dd32a15f 100644 --- a/docs/testplan/meson.build +++ b/docs/testplan/meson.build @@ -30,13 +30,13 @@ xe_test_dict = { if build_xe test_dict = { - 'i915_tests': { 'input': i915_test_config, 'extra_args': [] }, + 'i915_tests': { 'input': i915_test_config, 'extra_args': check_testlist }, 'kms_tests': { 'input': kms_test_config, 'extra_args': [] }, 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist } } else test_dict = { - 'i915_tests': { 'input': i915_test_config, 'extra_args': [] }, + 'i915_tests': { 'input': i915_test_config, 'extra_args': check_testlist }, 'kms_tests': { 'input': kms_test_config, 'extra_args': [] } } endif -- 2.40.1