diff options
Diffstat (limited to 'meson_test.py')
-rwxr-xr-x | meson_test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson_test.py b/meson_test.py index 1584ee5..170dbd3 100755 --- a/meson_test.py +++ b/meson_test.py @@ -72,6 +72,8 @@ def run_single_test(wrap, test): cmd = [test.exe_runner, test.fname] else: cmd = [test.fname] + if len(wrap) > 0 and 'valgrind' in wrap[0]: + wrap += test.valgrind_args if cmd is None: res = 'SKIP' duration = 0.0 |