diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-05-04 21:23:00 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-05-04 21:23:00 +0000 |
commit | 18016b667fbbdd2a82b62b89379973d41908dfa0 (patch) | |
tree | 4ac240307745f97352ff093f4f4522b18bca3dac /cpp/test/IceSSL/configuration/run.py | |
parent | Reverted back to plain popen to get error status (diff) | |
download | ice-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-x | cpp/test/IceSSL/configuration/run.py | 2 |
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) |