From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 5F47F10E013 for ; Mon, 14 Aug 2023 09:58:04 +0000 (UTC) Date: Mon, 14 Aug 2023 11:57:59 +0200 From: Mauro Carvalho Chehab To: Bhanuprakash Modem Message-ID: <20230814115759.0db25838@maurocar-mobl2> In-Reply-To: <20230517155114.95959-1-bhanuprakash.modem@intel.com> References: <20230517063323.4146387-82-bhanuprakash.modem@intel.com> <20230517155114.95959-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [igt-dev] [i-g-t V4 81/81] testplan/kms: Make documentation is mandatory for all kms subtests List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: igt-dev@lists.freedesktop.org Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: On Wed, 17 May 2023 21:21:14 +0530 Bhanuprakash Modem wrote: > As testplan documentation is ready for all kms tests, update the > testplan config to make sure we are not missing the documentation > all the kms tests. > > V2, V3, V4: - Rebase > > Signed-off-by: Bhanuprakash Modem > --- > 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 6cd44be5c..cca05cf8e 100644 > --- a/docs/testplan/meson.build > +++ b/docs/testplan/meson.build > @@ -31,13 +31,13 @@ xe_test_dict = { > if build_xe > test_dict = { > 'i915_tests': { 'input': i915_test_config, 'extra_args': [] }, > - 'kms_tests': { 'input': kms_test_config, 'extra_args': [] }, > + 'kms_tests': { 'input': kms_test_config, 'extra_args': check_testlist }, > 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist } > } > else > test_dict = { > 'i915_tests': { 'input': i915_test_config, 'extra_args': [] }, > - 'kms_tests': { 'input': kms_test_config, 'extra_args': [] } > + 'kms_tests': { 'input': kms_test_config, 'extra_args': check_testlist } > } LGTM. Reviewed-by: Mauro Carvalho Chehab > endif >