diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-18 20:42:01 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-18 20:42:01 +0000 |
commit | f8862b41182a15d4a71e4784c9fbc6b40d92cce4 (patch) | |
tree | 1058725372bbe4bfc9ab57da285362514a97fba0 /java/config/TestUtil.py | |
parent | updating version number to 1.3.0 (diff) | |
download | ice-f8862b41182a15d4a71e4784c9fbc6b40d92cce4.tar.bz2 ice-f8862b41182a15d4a71e4784c9fbc6b40d92cce4.tar.xz ice-f8862b41182a15d4a71e4784c9fbc6b40d92cce4.zip |
fixes
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 918960c9b6f..9b767fb0174 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -105,10 +105,13 @@ def waitServiceReady(pipe, token): break def printOutputFromPipe(pipe): + while 1: + line = pipe.readline() if not line: break + os.write(1, line) for toplevel in [".", "..", "../..", "../../..", "../../../.."]: |