summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2012-06-29 06:41:53 +0000
committerNanang Izzuddin <nanang@teluu.com>2012-06-29 06:41:53 +0000
commitb15ee72aa70205f816d819dcc1ca94bf34d50268 (patch)
tree7f143e52417205d19c733a9f59d78e11958b26fd /tests
parent14234d73776ad4e55ab09cf904db3b476d6015bb (diff)
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
Diffstat (limited to 'tests')
-rw-r--r--tests/pjsua/mod_sipp.py3
1 files changed, 2 insertions, 1 deletions
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: