diff options
author | Joe George <joe@zeroc.com> | 2016-08-26 13:30:47 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-08-26 13:30:47 -0400 |
commit | 9994b6f367e1735b968cfcaacde0e9273f6e8e16 (patch) | |
tree | ff385063aef3f9cc57ad3dde5399a3d0cdcdd6bd /scripts/TestUtil.py | |
parent | Fix TestUtil sometimes testing es5 when it should not (diff) | |
download | ice-9994b6f367e1735b968cfcaacde0e9273f6e8e16.tar.bz2 ice-9994b6f367e1735b968cfcaacde0e9273f6e8e16.tar.xz ice-9994b6f367e1735b968cfcaacde0e9273f6e8e16.zip |
Fix java-compat typo in TestUtil.py
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 255e118f888..81c650b0f80 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -547,7 +547,7 @@ def run(tests, root = False): filters.append((testFilter, False)) elif o == "--cross": global cross - crossLang = ["cpp", "csharp", "java", "java-compat" "js", "php", "python", "ruby", "objective-c"] + crossLang = ["cpp", "csharp", "java", "java-compat", "js", "php", "python", "ruby", "objective-c"] if a not in crossLang: print("cross must be one of %s" % ', '.join(crossLang)) sys.exit(1) @@ -2158,7 +2158,7 @@ def processCmdLine(): elif o == "--cross": global cross cross.append(a) - crossLang = ["cpp", "csharp", "java", "java-comapt", "js", "php", "python", "ruby", "objective-c"] + crossLang = ["cpp", "csharp", "java", "java-compat", "js", "php", "python", "ruby", "objective-c"] if not a in crossLang: print("cross must be one of %s" % ', '.join(crossLang)) sys.exit(1) |