summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@kernel.org>2023-04-12 11:44:24 +0200
committerMauro Carvalho Chehab <mchehab@kernel.org>2023-04-13 15:22:53 +0200
commit8637526f301f88a69d049f37fa9810db4c49f4ab (patch)
treed1cca5d0e1c14b12cd425f904cf38a8b5b6e0047 /docs
parentdefc394f18f526c9056df68bcce0bf53f61519ba (diff)
scripts/igt_doc.py: don't depend on igt_runner anymore
There's no need to actually call IGT runner to get test lists. Remove such dependency, in order to speedup --check. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/testplan/meson.build7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build
index ea9f6eeb7..3347f6187 100644
--- a/docs/testplan/meson.build
+++ b/docs/testplan/meson.build
@@ -11,11 +11,8 @@ xe_test_config = join_paths(source_root, 'tests', 'xe', 'xe_test_config.json')
check_testlist = []
if build_tests
doc_dependencies = test_executables
- if jsonc.found()
- # Check if documentation matches the actual tests
- check_testlist = [ '--check-testlist', '--igt-build-path', build_root ]
- doc_dependencies += runner
- endif
+ # Check if documentation matches the actual tests
+ check_testlist = [ '--check-testlist', '--igt-build-path', build_root ]
else
doc_dependencies = []
endif