diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-11-07 18:38:21 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-11-07 18:38:21 +0000 |
commit | 7c0b58b0782ef703c15377f502eee60d0d2c9c13 (patch) | |
tree | 908042e520c496d0164ca01429e621ed19e43742 /java/config/TestUtil.py | |
parent | fix typo in string construction (diff) | |
download | ice-7c0b58b0782ef703c15377f502eee60d0d2c9c13.tar.bz2 ice-7c0b58b0782ef703c15377f502eee60d0d2c9c13.tar.xz ice-7c0b58b0782ef703c15377f502eee60d0d2c9c13.zip |
Changes to allow test suite to run with compressionn on but not available
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 500c6e2e4c1..0188f60740c 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -116,6 +116,8 @@ def getServerPid(serverPipe): def getAdapterReady(serverPipe): output = serverPipe.readline() + if compress and output == "warning: bzip2 support not available, Ice.Override.Compress ignored\n": + output = serverPipe.readline() if not output: print "failed!" |