diff options
author | Dave Reisner <dreisner@archlinux.org> | 2019-06-28 12:43:32 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-08-12 02:03:17 +0200 |
commit | 18a64400617259b34ccf014682fd8022d551a036 (patch) | |
tree | 45a657e42cd66c31b01836040e603f55ef533a85 /test/scripts | |
parent | 75837a2717c3b5654149393d6ec0e0977a7ddc2f (diff) | |
download | pacman-18a64400617259b34ccf014682fd8022d551a036.tar.gz pacman-18a64400617259b34ccf014682fd8022d551a036.tar.xz |
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.build | 3 |
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 |