diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-04-27 00:27:54 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-04-27 00:27:54 +0000 |
commit | 481b0fb1be6882ee414c34d8174c907490c184bc (patch) | |
tree | 3467485601eef2d60657227ad666b263413e78c5 /java/config/TestUtil.py | |
parent | Freeze test fix + switch to popen4 to get stderr with Python on Windows (diff) | |
download | ice-481b0fb1be6882ee414c34d8174c907490c184bc.tar.bz2 ice-481b0fb1be6882ee414c34d8174c907490c184bc.tar.xz ice-481b0fb1be6882ee414c34d8174c907490c184bc.zip |
Bug fixes, in particular changed python popen calls to popen4
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index bc2083cd7a2..0423c4ca71a 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -174,6 +174,7 @@ def clientServerTestWithOptions(additionalServerOptions, additionalClientOptions (clientPipeIn, clientPipe) = os.popen4(client + clientOptions + additionalClientOptions) print "ok" + #printOutputFromPipe(serverPipe) printOutputFromPipe(clientPipe) clientInStatus = clientPipeIn.close() |