diff options
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 [".", "..", "../..", "../../..", "../../../.."]: |