From 6f68b3a140172376d4b239bea11b48ba74b47786 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 11 Jan 2017 14:30:36 -0500 Subject: Trace the gssproxy process too. Signed-off-by: Simo Sorce --- proxy/tests/runtests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/proxy/tests/runtests.py b/proxy/tests/runtests.py index ac1ff2e..1cd86ea 100755 --- a/proxy/tests/runtests.py +++ b/proxy/tests/runtests.py @@ -43,7 +43,10 @@ if __name__ == '__main__': logfile = open(gssproxylog, "a") - gproc, gpsocket = setup_gssproxy(testdir, logfile, keysenv) + gssproxyenv = keysenv + gssproxyenv['KRB5_TRACE'] = os.path.join(testdir, 'gssproxy.trace') + + gproc, gpsocket = setup_gssproxy(testdir, logfile, gssproxyenv) time.sleep(5) #Give time to gssproxy to fully start up processes['GSS-Proxy(%d)' % gproc.pid] = gproc gssapienv['GSSPROXY_SOCKET'] = gpsocket -- cgit