summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-06-09 19:51:49 +0200
committerJose <jose@zeroc.com>2015-06-09 19:51:49 +0200
commitfbf21156c5dd33d2e83d3d052a9b718e7073afcd (patch)
treef3e9cd4d7d4817248c9405fb2bf4d9db5f7e1228 /scripts
parentFix Web Socket protocol bug when reading message payload (diff)
downloadice-fbf21156c5dd33d2e83d3d052a9b718e7073afcd.tar.bz2
ice-fbf21156c5dd33d2e83d3d052a9b718e7073afcd.tar.xz
ice-fbf21156c5dd33d2e83d3d052a9b718e7073afcd.zip
Fix for run TestUtil.py with valgrind
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/TestUtil.py2
1 files changed, 1 insertions, 1 deletions
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 + '" ')