summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/configuration/run.py
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-07-06 03:44:47 +0000
committerMichi Henning <michi@zeroc.com>2004-07-06 03:44:47 +0000
commit5050f6f04878376e1ad19689804426e5298cc75e (patch)
tree1073954ab2062b2c9b069d6fdcfc1d915b3896c0 /cpp/test/IceSSL/configuration/run.py
parentDid a make depend. (diff)
downloadice-5050f6f04878376e1ad19689804426e5298cc75e.tar.bz2
ice-5050f6f04878376e1ad19689804426e5298cc75e.tar.xz
ice-5050f6f04878376e1ad19689804426e5298cc75e.zip
Changed test scripts to use unbuffered I/O so when we run the scripts from
allTests.py, we get to see the output as it is produced, not line by line.
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 90bd44d0186..4c42713c784 100755
--- a/cpp/test/IceSSL/configuration/run.py
+++ b/cpp/test/IceSSL/configuration/run.py
@@ -31,7 +31,7 @@ client = os.path.join(testdir, "configuration")
localClientOptions = TestUtil.clientServerProtocol + TestUtil.defaultHost
print "starting configuration...",
-clientPipe = os.popen(client + localClientOptions + " 2>&1")
+clientPipe = os.popen(client + localClientOptions + " 2>&1", "r", 0)
print "ok"
TestUtil.printOutputFromPipe(clientPipe)