pacman/test/scripts/meson.build
Dave Reisner 18a6440061 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.
2019-08-12 10:03:17 +10:00

14 lines
252 B
Meson

tests = [
'parseopts_test.sh',
'makepkg-template_test.sh',
'human_to_size_test.sh',
]
foreach tst : tests
test(tst,
BASH,
env : TEST_ENV,
args : [
join_paths(meson.current_source_dir(), tst),
])
endforeach