From 5050f6f04878376e1ad19689804426e5298cc75e Mon Sep 17 00:00:00 2001 From: Michi Henning Date: Tue, 6 Jul 2004 03:44:47 +0000 Subject: 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. --- cpp/test/IceSSL/configuration/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/test/IceSSL/configuration/run.py') 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) -- cgit v1.2.3