summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/configuration/run.py
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2004-05-04 21:23:00 +0000
committerBernard Normier <bernard@zeroc.com>2004-05-04 21:23:00 +0000
commit18016b667fbbdd2a82b62b89379973d41908dfa0 (patch)
tree4ac240307745f97352ff093f4f4522b18bca3dac /cpp/test/IceSSL/configuration/run.py
parentReverted back to plain popen to get error status (diff)
downloadice-18016b667fbbdd2a82b62b89379973d41908dfa0.tar.bz2
ice-18016b667fbbdd2a82b62b89379973d41908dfa0.tar.xz
ice-18016b667fbbdd2a82b62b89379973d41908dfa0.zip
Redirected stderr to stdout in all popen calls
Diffstat (limited to 'cpp/test/IceSSL/configuration/run.py')
-rwxr-xr-xcpp/test/IceSSL/configuration/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceSSL/configuration/run.py b/cpp/test/IceSSL/configuration/run.py
index 39b8edd3b6e..4b74edab0d4 100755
--- a/cpp/test/IceSSL/configuration/run.py
+++ b/cpp/test/IceSSL/configuration/run.py
@@ -36,7 +36,7 @@ client = os.path.join(testdir, "configuration")
localClientOptions = TestUtil.clientServerProtocol + TestUtil.defaultHost
print "starting configuration...",
-clientPipe = os.popen(client + localClientOptions)
+clientPipe = os.popen(client + localClientOptions + " 2>&1")
print "ok"
TestUtil.printOutputFromPipe(clientPipe)