summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceUtil/thread/run.py')
-rwxr-xr-xcpp/test/IceUtil/thread/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceUtil/thread/run.py b/cpp/test/IceUtil/thread/run.py
index 6612d951f75..d0b2e07efec 100755
--- a/cpp/test/IceUtil/thread/run.py
+++ b/cpp/test/IceUtil/thread/run.py
@@ -27,7 +27,7 @@ client = os.path.join(testdir, "client")
clientOptions = ' ' + testdir;
print "starting client...",
-clientPipe = os.popen(client + clientOptions + " 2>&1")
+clientPipe = os.popen(client + clientOptions + " 2>&1", "r", 0)
print "ok"
TestUtil.printOutputFromPipe(clientPipe);