mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
tests: Do not treat the iotests as separate meson test target anymore
If there is a failing iotest, the output is currently not logged to the console anymore. To get this working again, we need to run the meson test runner with "--print-errorlogs" (and without "--verbose" due to a current meson bug that will be fixed here: https://github.com/mesonbuild/meson/commit/c3f145ca2b9f5.patch ). We could update the "meson test" call in tests/Makefile.include, but actually it's nicer and easier if we simply do not treat the iotests as separate test target anymore and integrate them along with the other test suites. This has the disadvantage of not getting the detailed progress indication there anymore, but since that was only working right in single-threaded "make -j1" mode anyway, it's not a huge loss right now. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220310075048.2303495-1-thuth@redhat.com> Tested-by: Hanna Reitz <hreitz@redhat.com> Signed-off-by: Hanna Reitz <hreitz@redhat.com>
This commit is contained in:
parent
ab101297cb
commit
e287072b40
3 changed files with 4 additions and 15 deletions
|
@ -3,9 +3,9 @@ project('qemu', ['c'], meson_version: '>=0.59.3',
|
|||
'b_staticpic=false', 'stdsplit=false'],
|
||||
version: files('VERSION'))
|
||||
|
||||
add_test_setup('quick', exclude_suites: ['block', 'slow', 'thorough'], is_default: true)
|
||||
add_test_setup('slow', exclude_suites: ['block', 'thorough'], env: ['G_TEST_SLOW=1', 'SPEED=slow'])
|
||||
add_test_setup('thorough', exclude_suites: ['block'], env: ['G_TEST_SLOW=1', 'SPEED=thorough'])
|
||||
add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)
|
||||
add_test_setup('slow', exclude_suites: ['thorough'], env: ['G_TEST_SLOW=1', 'SPEED=slow'])
|
||||
add_test_setup('thorough', env: ['G_TEST_SLOW=1', 'SPEED=thorough'])
|
||||
|
||||
not_found = dependency('', required: false)
|
||||
keyval = import('keyval')
|
||||
|
|
|
@ -101,10 +101,6 @@ def emit_suite(name, suite, prefix):
|
|||
testsuites = defaultdict(Suite)
|
||||
for test in introspect['tests']:
|
||||
process_tests(test, targets, testsuites)
|
||||
# HACK: check-block is a separate target so that it runs with --verbose;
|
||||
# only write the dependencies
|
||||
emit_suite_deps('block', testsuites['block'], 'check')
|
||||
del testsuites['block']
|
||||
emit_prolog(testsuites, 'check')
|
||||
for name, suite in testsuites.items():
|
||||
emit_suite(name, suite, 'check')
|
||||
|
|
|
@ -147,16 +147,9 @@ check-acceptance: check-acceptance-deprecated-warning | check-avocado
|
|||
|
||||
# Consolidated targets
|
||||
|
||||
.PHONY: check-block check check-clean get-vm-images
|
||||
.PHONY: check check-clean get-vm-images
|
||||
check:
|
||||
|
||||
ifneq ($(.check-block.deps),)
|
||||
check: check-block
|
||||
check-block: run-ninja
|
||||
$(if $(MAKE.n),,+)$(MESON) test $(MTESTARGS) $(.mtestargs) --verbose \
|
||||
--logbase iotestslog $(call .speed.$(SPEED), block block-slow block-thorough)
|
||||
endif
|
||||
|
||||
check-build: run-ninja
|
||||
|
||||
check-clean:
|
||||
|
|
Loading…
Reference in a new issue