diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-05-27 13:06:06 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-05-27 13:06:06 +0200 |
commit | 2a93c026962656d385b8b0d75c41af3d4fc7d9e5 (patch) | |
tree | 086e48d54576942ea3a3bb09c0813e532aa3c570 /scripts/TestUtil.py | |
parent | Atomic.h exchange must return the original value (diff) | |
download | ice-2a93c026962656d385b8b0d75c41af3d4fc7d9e5.tar.bz2 ice-2a93c026962656d385b8b0d75c41af3d4fc7d9e5.tar.xz ice-2a93c026962656d385b8b0d75c41af3d4fc7d9e5.zip |
Recuced the number of tests ran with --all
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 34 |
1 files changed, 8 insertions, 26 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 1c69736c11e..f2a2135de79 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -392,9 +392,9 @@ if not iceHome: thirdPartyHome = path[0] # List of supported cross languages test. -crossTests = [ "Ice/adapterDeactivation", +crossTests = [ #"Ice/adapterDeactivation", #"Ice/background", - "Ice/binding", + #"Ice/binding", #"Ice/checksum", #"Ice/custom", "Ice/ami", @@ -402,16 +402,16 @@ crossTests = [ "Ice/adapterDeactivation", "Ice/exceptions", "Ice/enums", "Ice/facets", - "Ice/hold", + #"Ice/hold", "Ice/inheritance", "Ice/invoke", - "Ice/location", + #"Ice/location", "Ice/objects", "Ice/operations", "Ice/proxy", - "Ice/retry", + #"Ice/retry", "Ice/servantLocator", - "Ice/timeout", + #"Ice/timeout", "Ice/slicing/exceptions", "Ice/slicing/objects", "Ice/optional", @@ -558,35 +558,17 @@ def run(tests, root = False): a = '--protocol=ws %s' % arg expanded.append([ (test, a, config) for test,config in tests if "core" in config]) - a = '--protocol=tcp --compress %s' % arg - expanded.append([ (test, a, config) for test,config in tests if "core" in config]) - - a = '--mx %s' % arg - expanded.append([ (test, a, config) for test,config in tests if "core" in config]) - if not noipv6: - a = "--ipv6 --protocol=tcp %s" % arg - expanded.append([ (test, a, config) for test,config in tests if "core" in config]) - - a = "--ipv6 --protocol=ssl %s" % arg - expanded.append([ (test, a, config) for test,config in tests if "core" in config]) - - a = "--ipv6 --protocol=ws %s" % arg + a = "--ipv6 --protocol=wss --compress --mx --serialize %s" % arg expanded.append([ (test, a, config) for test,config in tests if "core" in config]) a = "--protocol=tcp %s" % arg expanded.append([ (test, a, config) for test,config in tests if "service" in config]) - a = '--mx %s' % arg - expanded.append([ (test, a, config) for test,config in tests if "service" in config]) - if not noipv6: - a = "--protocol=ssl --ipv6 %s" % arg + a = "--ipv6 --protocol=wss --compress --mx --serialize %s" % arg expanded.append([ (test, a, config) for test,config in tests if "service" in config]) - a = "--protocol=tcp --serialize %s" % arg - expanded.append([ (test, a, config) for test,config in tests if "stress" in config]) - elif not allCross: expanded.append([ (test, arg, config) for test,config in tests]) |