From ea5b644ece2fcdbc7cf64a2ece55ca96e0b4563f Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sun, 29 Nov 2015 11:51:50 -0500 Subject: Always use valgrind for gssproxy tests Signed-off-by: Simo Sorce Reviewed-by: Robbie Harwoood --- proxy/tests/runtests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'proxy/tests') 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) -- cgit