diff options
Diffstat (limited to 'proxy')
-rwxr-xr-x | proxy/tests/runtests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proxy/tests/runtests.py b/proxy/tests/runtests.py index 7bfcc21..11a20ab 100755 --- a/proxy/tests/runtests.py +++ b/proxy/tests/runtests.py @@ -399,7 +399,8 @@ def setup_gssproxy(testdir, logfile, env): socket = os.path.join(gssproxy, 'gp.sock') conf = os.path.join(gssproxy, 'gp.conf') - gproc = subprocess.Popen(["./gssproxy", "-i", "-d", + gproc = subprocess.Popen(["valgrind", "--track-origins=yes", + "./gssproxy", "-i", "-d", "-s", socket, "-c", conf], stdout=logfile, stderr=logfile, env=env, preexec_fn=os.setsid) |