diff options
author | Bhanuprakash Modem <bhanuprakash.modem@intel.com> | 2023-08-15 22:18:15 +0530 |
---|---|---|
committer | Bhanuprakash Modem <bhanuprakash.modem@intel.com> | 2023-08-16 21:29:23 +0530 |
commit | 00bc4cf384382018ebe6f333e4d53849c883445b (patch) | |
tree | 8c2a36a36bf62ff44fe68a63701179e94fa55370 /docs | |
parent | 6f62440e68f7583ec42c1da71c5423e2d785832f (diff) |
testplan/kms: Make documentation is mandatory for all kms subtests
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, V5: - Rebase
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/testplan/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build index e838f2eb1..433464dc8 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': check_testlist }, - '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': check_testlist }, - 'kms_tests': { 'input': kms_test_config, 'extra_args': [] } + 'kms_tests': { 'input': kms_test_config, 'extra_args': check_testlist } } endif |