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 /cs/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 'cs/config/TestUtil.py')
-rw-r--r-- | cs/config/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cs/config/TestUtil.py b/cs/config/TestUtil.py index 6054c15efae..d9d752cc9f5 100644 --- a/cs/config/TestUtil.py +++ b/cs/config/TestUtil.py @@ -102,6 +102,8 @@ def getServerPid(serverPipe): def getAdapterReady(serverPipe): output = serverPipe.readline().strip() + if compress and output == "warning: bzip2 support not available, Ice.Override.Compress ignored\n": + output = serverPipe.readline() if not output: print "failed!" |