From 951262d7590343ffa9730666c427ad9d708a9fb6 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 16 Oct 2016 20:01:03 +0300 Subject: Removed Valgrind from core. --- mesonbuild/scripts/meson_test.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'mesonbuild/scripts') 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): -- cgit v1.1