diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-23 10:00:17 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-23 10:00:17 -0230 |
commit | 278f7856b4b906aea4199eda8294b46064ec4ce8 (patch) | |
tree | 6ac95560911cad6acb3253b5d5d258dbea993edc /scripts/TestUtil.py | |
parent | PHP fixes for 5.3 (diff) | |
download | ice-278f7856b4b906aea4199eda8294b46064ec4ce8.tar.bz2 ice-278f7856b4b906aea4199eda8294b46064ec4ce8.tar.xz ice-278f7856b4b906aea4199eda8294b46064ec4ce8.zip |
Port latest Endpoint/ConnectionInfo changes to python/ruby
Added Ice/info test to python/ruby
Modified allTest to not run info test for compress or ipv6
Added Endpoint comparison methods to python/ruby
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index de65c655d53..e5c80aa5116 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1362,6 +1362,10 @@ def runTests(start, expanded, num = 0, script = False): print "%s*** test not supported with IPv6%s" % (prefix, suffix) continue + if args.find("compress") != -1 and "nocompress" in config: + print "%s*** test not supported with compression%s" % (prefix, suffix) + continue + if isVista() and "novista" in config: print "%s*** test not supported under Vista%s" % (prefix, suffix) continue |