diff options
author | Jose <jose@zeroc.com> | 2012-11-29 18:27:40 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-11-29 18:27:40 +0100 |
commit | d94e9f8fd46b84b0261c2c4b6e5f1b4e71d73fbd (patch) | |
tree | 80bbb639c199658e7a58b28b2d060daaf25e3152 | |
parent | Removed expat from Darwin third-party list (diff) | |
download | ice-d94e9f8fd46b84b0261c2c4b6e5f1b4e71d73fbd.tar.bz2 ice-d94e9f8fd46b84b0261c2c4b6e5f1b4e71d73fbd.tar.xz ice-d94e9f8fd46b84b0261c2c4b6e5f1b4e71d73fbd.zip |
Fixed (ICE-5022) - C# Glacier2/sessionHelper test failure on Windows Server 2008 x64 w/ VS2010
-rwxr-xr-x | cpp/allTests.py | 2 | ||||
-rwxr-xr-x | cs/allTests.py | 2 | ||||
-rwxr-xr-x | java/allTests.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index faaae708b40..00096ad5b57 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -107,7 +107,7 @@ tests = [ ("Glacier2/ssl", ["service", "novalgrind", "novc90", "nomingw"]), # valgrind doesn't work well with openssl ("Glacier2/dynamicFiltering", ["service", "novc90", "nomingw"]), ("Glacier2/staticFiltering", ["service", "noipv6", "novc90", "nomingw", "nomx"]), - ("Glacier2/sessionHelper", ["service", "novc90", "nomingw"]), + ("Glacier2/sessionHelper", ["service", "novc90", "nomingw", "nossl", "noipv6"]), ] # diff --git a/cs/allTests.py b/cs/allTests.py index 640679089c2..623c005a93f 100755 --- a/cs/allTests.py +++ b/cs/allTests.py @@ -68,7 +68,7 @@ tests = [ ("IceBox/admin", ["core", "noipv6", "nosilverlight", "nomx"]), ("IceBox/configuration", ["core", "noipv6", "nosilverlight", "nomx"]), ("Glacier2/router", ["service", "nosilverlight"]), - ("Glacier2/sessionHelper", ["service", "nosilverlight"]), + ("Glacier2/sessionHelper", ["service", "nosilverlight", "nossl", "noipv6"]), ("IceGrid/simple", ["service", "nosilverlight"]), ("IceSSL/configuration", ["once", "novista", "nomono", "nocompact", "nosilverlight"]), ] diff --git a/java/allTests.py b/java/allTests.py index c1545d5c726..7d1576fef47 100755 --- a/java/allTests.py +++ b/java/allTests.py @@ -77,7 +77,7 @@ tests = [ ("Freeze/evictor", ["core"]), ("Freeze/fileLock", ["once"]), ("Glacier2/router", ["service"]), - ("Glacier2/sessionHelper", ["service"]), + ("Glacier2/sessionHelper", ["service", "nossl", "noipv6"]), ("IceGrid/simple", ["service"]), ("IceSSL/configuration", ["once"]) ] |