diff options
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) |