From b15ee72aa70205f816d819dcc1ca94bf34d50268 Mon Sep 17 00:00:00 2001 From: Nanang Izzuddin Date: Fri, 29 Jun 2012 06:41:53 +0000 Subject: Re #1523: sipp output redirection to /dev/null somehow caused sipp unresponsive when the test is run under cdash. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4187 74dad513-b988-da41-8d7b-12977e46ad98 --- tests/pjsua/mod_sipp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/pjsua/mod_sipp.py b/tests/pjsua/mod_sipp.py index 82e6b75a..5e0f14cb 100644 --- a/tests/pjsua/mod_sipp.py +++ b/tests/pjsua/mod_sipp.py @@ -84,7 +84,8 @@ def start_sipp(): else: # redirect output to NULL global FDEVNULL - FDEVNULL = open(os.devnull, 'w') + #FDEVNULL = open(os.devnull, 'w') + FDEVNULL = open("logs/sipp_output.tmp", 'w') sipp_proc = subprocess.Popen(fullcmd, shell=G_INUNIX, stdout=FDEVNULL, stderr=FDEVNULL) if not SIPP_BG_MODE: -- cgit v1.2.3