diff options
author | Jose <jose@zeroc.com> | 2015-06-09 19:51:49 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-06-09 19:51:49 +0200 |
commit | fbf21156c5dd33d2e83d3d052a9b718e7073afcd (patch) | |
tree | f3e9cd4d7d4817248c9405fb2bf4d9db5f7e1228 /scripts/TestUtil.py | |
parent | Fix Web Socket protocol bug when reading message payload (diff) | |
download | ice-fbf21156c5dd33d2e83d3d052a9b718e7073afcd.tar.bz2 ice-fbf21156c5dd33d2e83d3d052a9b718e7073afcd.tar.xz ice-fbf21156c5dd33d2e83d3d052a9b718e7073afcd.zip |
Fix for run TestUtil.py with valgrind
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
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 + '" ') |