summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-10-28 09:24:04 +0100
committerBenoit Foucher <benoit@zeroc.com>2014-10-28 09:24:04 +0100
commita1116f5c2949b0db654e6b899cad635826d3abb4 (patch)
tree6515f78f495c55e9a39b1ddd0dd4f243f6f6267a /scripts/TestUtil.py
parentFixed build system to allow compiling JS on OS X (diff)
downloadice-a1116f5c2949b0db654e6b899cad635826d3abb4.tar.bz2
ice-a1116f5c2949b0db654e6b899cad635826d3abb4.tar.xz
ice-a1116f5c2949b0db654e6b899cad635826d3abb4.zip
Fixed ICE-5777: Python and C# Ice/ami test failures when run with other protocols than tcp
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index 6ec47126644..42d4b2d595f 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -1264,7 +1264,6 @@ def clientServerTest(additionalServerOptions = "", additionalClientOptions = "",
global cross
-
if len(cross) > 0:
if lang == "js":
print("** skipping js cross test")
@@ -1343,7 +1342,7 @@ def clientServerTest(additionalServerOptions = "", additionalClientOptions = "",
def collocatedTest(additionalOptions = ""):
lang = getDefaultMapping()
- if len(cross) > 1 or cross[0] != lang:
+ if len(cross) > 0 and cross[0] != lang:
print("** skipping cross test")
return
if silverlight: