pacman/test/scripts/meson.build
Eli Schwartz d6f8659443 ensure tests are parsed as TAP since they are, in fact, TAP
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2021-04-07 22:38:52 +10:00

14 lines
250 B
Meson

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