summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-11-29 11:51:50 -0500
committerRobbie Harwood <rharwood@redhat.com>2015-12-01 17:54:14 -0500
commitea5b644ece2fcdbc7cf64a2ece55ca96e0b4563f (patch)
tree92c6899a789a0fa3908019ba927fa091f58b4405
parent76ee3c99b1644fe5bd20793c2e465946bba986b5 (diff)
downloadgss-proxy-ea5b644ece2fcdbc7cf64a2ece55ca96e0b4563f.tar.gz
gss-proxy-ea5b644ece2fcdbc7cf64a2ece55ca96e0b4563f.tar.xz
gss-proxy-ea5b644ece2fcdbc7cf64a2ece55ca96e0b4563f.zip
Always use valgrind for gssproxy tests
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Robbie Harwoood <rharwood@redhat.com>
-rwxr-xr-xproxy/tests/runtests.py3
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)