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>
This commit is contained in:
Eli Schwartz 2021-04-05 17:36:06 -04:00 committed by Allan McRae
parent 8aa2a48fc3
commit d6f8659443
2 changed files with 2 additions and 0 deletions

View file

@ -6,6 +6,7 @@ tests = [
foreach tst : tests foreach tst : tests
test(tst, test(tst,
BASH, BASH,
protocol : 'tap',
env : TEST_ENV, env : TEST_ENV,
args : [ args : [
join_paths(meson.current_source_dir(), tst), join_paths(meson.current_source_dir(), tst),

View file

@ -1,6 +1,7 @@
test('vercmptest', test('vercmptest',
BASH, BASH,
env : TEST_ENV, env : TEST_ENV,
protocol : 'tap',
args : [ args : [
join_paths(meson.current_source_dir(), 'vercmptest.sh') join_paths(meson.current_source_dir(), 'vercmptest.sh')
]) ])