From fbf21156c5dd33d2e83d3d052a9b718e7073afcd Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 9 Jun 2015 19:51:49 +0200 Subject: Fix for run TestUtil.py with valgrind --- scripts/TestUtil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/TestUtil.py') diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 6a18f53397d..0ef7081126c 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1143,7 +1143,7 @@ def getCommandLine(exe, config, options = "", interpreterOptions = ""): # --child-silent-after-fork=yes is required for the IceGrid/activator test where the node # forks a process with execv failing (invalid exe name). output.write("valgrind -q --child-silent-after-fork=yes --leak-check=full ") - output.write('--suppressions="' + os.path.join(toplevel, "config", "valgrind.sup") + '" ' + exe + '" ') + output.write('--suppressions="' + os.path.join(toplevel, "config", "valgrind.sup") + '" "' + exe + '" ') else: if exe.find(" ") != -1: output.write('"' + exe + '" ') -- cgit v1.2.3