Skip to content

Commit 7aab035

Browse files
committed
meson: add parallel test suite
Add a 'parallel' test suite to mirror make test-parallel. Signed-off-by: Florian Fischer <[email protected]>
1 parent e31536c commit 7aab035

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/meson.build

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ endif
142142

143143
runtests_sh = find_program('runtests.sh')
144144
runtests_loop_sh = find_program('runtests-loop.sh')
145+
runtests_quiet_sh = find_program('runtests-quiet.sh')
145146

146147
xcflags = []
147148
if has_stringop_overflow
@@ -179,6 +180,12 @@ foreach test_source : all_tests
179180
is_parallel: false,
180181
workdir : meson.current_build_dir(),
181182
suite : 'loop')
183+
184+
test(test_name + '_quiet',
185+
runtests_quiet_sh,
186+
args : test_name,
187+
workdir : meson.current_build_dir(),
188+
suite : 'parallel')
182189
endforeach
183190

184191
configure_file(input : 'runtests.sh',

0 commit comments

Comments
 (0)