aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-01-15 23:44:06 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2022-02-01 09:05:27 +0100
commit7a975d75cf57b0a0de3f12b9d8727394c70839d4 (patch)
tree1f091ff1c50136297840696fdf30fe2a31c4b266 /test cases
parentfc661c35a20a7cc85f76e5e0c502700f42e27cf2 (diff)
downloadmeson-7a975d75cf57b0a0de3f12b9d8727394c70839d4.zip
meson-7a975d75cf57b0a0de3f12b9d8727394c70839d4.tar.gz
meson-7a975d75cf57b0a0de3f12b9d8727394c70839d4.tar.bz2
unittests: check that "verbose: true" works on tests
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/206 tap tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/206 tap tests/meson.build b/test cases/common/206 tap tests/meson.build
index 5221319..54f4e41 100644
--- a/test cases/common/206 tap tests/meson.build
+++ b/test cases/common/206 tap tests/meson.build
@@ -7,7 +7,7 @@ test('fail', tester, args : ['not ok'], should_fail: true, protocol: 'tap')
test('xfail', tester, args : ['not ok # todo'], protocol: 'tap')
test('xpass', tester, args : ['ok # todo'], should_fail: true, protocol: 'tap')
test('skip', tester, args : ['ok # skip'], protocol: 'tap')
-test('partially skipped', tester, args : ['ok 1\nok 2 # skip'], protocol: 'tap')
+test('partially skipped', tester, args : ['ok 1\nok 2 # skip'], suite: ['verbose'], protocol: 'tap', verbose: true)
test('partially skipped (real-world example)', cat, args : [files('issue7515.txt')], protocol: 'tap')
test('skip comment', tester, args : ['ok # Skipped: with a comment'], protocol: 'tap')
test('skip failure', tester, args : ['not ok # skip'], should_fail: true, protocol: 'tap')