
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.
14 lines
252 B
Meson
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
|