diff options
author | Michi Henning <michi@zeroc.com> | 2004-07-06 04:10:07 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-07-06 04:10:07 +0000 |
commit | 65d19258f37bec2de10cb85ce850868eea18251b (patch) | |
tree | 846c4d9b304888005055412fde76cbca9beb10c3 /cpp/test/IceSSL/certificateAndKeyParsing/run.py | |
parent | Changed test scripts to use unbuffered I/O so when we run the scripts from (diff) | |
download | ice-65d19258f37bec2de10cb85ce850868eea18251b.tar.bz2 ice-65d19258f37bec2de10cb85ce850868eea18251b.tar.xz ice-65d19258f37bec2de10cb85ce850868eea18251b.zip |
Got carried away when changing the tests to unbuffered I/O and changed more
than necessary. Changed back now :-)
Diffstat (limited to 'cpp/test/IceSSL/certificateAndKeyParsing/run.py')
-rwxr-xr-x | cpp/test/IceSSL/certificateAndKeyParsing/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceSSL/certificateAndKeyParsing/run.py b/cpp/test/IceSSL/certificateAndKeyParsing/run.py index bcc36ad5452..6ba36e6e744 100755 --- a/cpp/test/IceSSL/certificateAndKeyParsing/run.py +++ b/cpp/test/IceSSL/certificateAndKeyParsing/run.py @@ -37,7 +37,7 @@ client = os.path.join(testdir, "certificateAndKeyParsing") localClientOptions = TestUtil.clientServerProtocol + TestUtil.defaultHost print "starting certificateAndKeyParsing...", -clientPipe = os.popen(client + localClientOptions + testOptions + " 2>&1", "r", 0) +clientPipe = os.popen(client + localClientOptions + testOptions + " 2>&1") print "ok" TestUtil.printOutputFromPipe(clientPipe) |