Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/test/scripts
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2019-06-28 06:43:32 -0400
committerAllan McRae <allan@archlinux.org>2019-08-12 10:03:17 +1000
commit18a64400617259b34ccf014682fd8022d551a036 (patch)
tree45a657e42cd66c31b01836040e603f55ef533a85 /test/scripts
parent75837a2717c3b5654149393d6ec0e0977a7ddc2f (diff)
meson: remove tap-driver.py, use meson's TAP protocol
This includes a patch from Andrew to fix pactest's TAP output for subtests. Original TAP support in meson was added in 0.50, but 0.51 contains a bugfix that ensures the test still work with the --verbose flag passed to meson test, so let's depend on that.
Diffstat (limited to 'test/scripts')
-rw-r--r--test/scripts/meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/scripts/meson.build b/test/scripts/meson.build
index 0bdbfb2f..0dd05fd9 100644
--- a/test/scripts/meson.build
+++ b/test/scripts/meson.build
@@ -6,10 +6,9 @@ tests = [
foreach tst : tests
test(tst,
- PYTHON,
+ BASH,
env : TEST_ENV,
args : [
- join_paths(meson.source_root(), 'build-aux/tap-driver.py'),
join_paths(meson.current_source_dir(), tst),
])
endforeach