diff options
Diffstat (limited to 'mesonbuild/scripts/meson_test.py')
-rwxr-xr-x | mesonbuild/scripts/meson_test.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mesonbuild/scripts/meson_test.py b/mesonbuild/scripts/meson_test.py index 8034815..3d0d957 100755 --- a/mesonbuild/scripts/meson_test.py +++ b/mesonbuild/scripts/meson_test.py @@ -123,10 +123,7 @@ def run_single_test(wrap, test): stde = None returncode = -1 else: - if len(wrap) > 0 and 'valgrind' in wrap[0]: - cmd = wrap + test.valgrind_args + cmd + test.cmd_args - else: - cmd = wrap + cmd + test.cmd_args + cmd = wrap + cmd + test.cmd_args starttime = time.time() child_env = os.environ.copy() if isinstance(test.env, build.EnvironmentVariables): |