diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-05 15:33:01 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-05 15:33:01 +0100 |
commit | cb4d5772e9a7a9228577df83027e45ec7de022ea (patch) | |
tree | bd6489fe77ed5fba43adff613293d580fda8e0f3 /scripts/TestUtil.py | |
parent | Fixed src tree build of IceJS (diff) | |
download | ice-cb4d5772e9a7a9228577df83027e45ec7de022ea.tar.bz2 ice-cb4d5772e9a7a9228577df83027e45ec7de022ea.tar.xz ice-cb4d5772e9a7a9228577df83027e45ec7de022ea.zip |
Fixed ICE-5607: relaxed Ice.MessageSizeMax
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 6156084f7c5..877fb9b0ce5 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1276,11 +1276,10 @@ def clientServerTest(additionalServerOptions = "", additionalClientOptions = "", else: serverenv = getTestEnv(lang, serverdir) - global cross if len(cross) > 0: - if lang == "js": - print("** skipping js cross test") + if lang == "js" and cross[0] != lang: + print("** skipping js cross test ") return elif len(cross) == 0: cross.append(lang) |