diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-03-25 13:55:24 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-03-25 13:55:24 -0230 |
commit | 0a734e324adbfc51a8d17c95ca49a380a436b794 (patch) | |
tree | 29a8668816a38073fda59274b4bda118240417d2 /config/TestUtil.py | |
parent | minor fixes to README/INSTALL files (diff) | |
download | ice-0a734e324adbfc51a8d17c95ca49a380a436b794.tar.bz2 ice-0a734e324adbfc51a8d17c95ca49a380a436b794.tar.xz ice-0a734e324adbfc51a8d17c95ca49a380a436b794.zip |
Bug 2860 - skip tests not supported with IPv6
Diffstat (limited to 'config/TestUtil.py')
-rwxr-xr-x | config/TestUtil.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/config/TestUtil.py b/config/TestUtil.py index e789d874e9f..96b3313cbce 100755 --- a/config/TestUtil.py +++ b/config/TestUtil.py @@ -25,6 +25,15 @@ x64 = False # Binary distribution is 64-bit javaCmd = "java" # Default java loader # +# The folowing tests are not supported with IPv6 +# +ipv6Skip = [ + "IceBox/configuration", + "IceStorm/repstress", + "Glacier2/staticFiltering" + ] + +# # The PHP interpreter is called "php5" on some platforms (e.g., SLES). # phpCmd = "php" @@ -862,6 +871,20 @@ def runTests(configs, tests, num = 0): if len(configs) > 1: print "[ " + str(configCount) + " of " + str(len(configs)) + " ]", print + + # + # Skip tests not supported with IPv6 if necessary + # + if args.find("--ipv6"): + for j in ipv6Skip: + match = False + if i.endswith(j): + match = True + break + if match: + print "*** test not supported with IPv6" + continue + print "*** test started:", time.strftime("%x %X") sys.stdout.flush() |