aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-02-02 20:25:55 +0200
committerGitHub <noreply@github.com>2022-02-02 20:25:55 +0200
commit9a1a5c2b74627d8d0476def0ae11848308994b5f (patch)
tree280f7f1169c227ec001e19e6963afece7c6b5b4f /test cases
parent6383eb227992a3ae77182a990b9b5ce2175846f2 (diff)
parent7a975d75cf57b0a0de3f12b9d8727394c70839d4 (diff)
downloadmeson-9a1a5c2b74627d8d0476def0ae11848308994b5f.zip
meson-9a1a5c2b74627d8d0476def0ae11848308994b5f.tar.gz
meson-9a1a5c2b74627d8d0476def0ae11848308994b5f.tar.bz2
Merge pull request #9834 from bonzini/test-verbose-kwarg
New keyword argument `verbose` for tests and benchmarks
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')