diff options
author | Makarand Dharmapurikar <makarandd@google.com> | 2017-04-14 14:01:33 -0700 |
---|---|---|
committer | Makarand Dharmapurikar <makarandd@google.com> | 2017-04-14 14:01:33 -0700 |
commit | 9c8e9be16bace39e31df10c16327aa7620ff3ca9 (patch) | |
tree | 698bc7adb0b53234541b7addb38d057ede1740e0 /tools/run_tests | |
parent | 60df47a1b7ebed4ac2543e96a5d6640559aef568 (diff) |
removed 'objc' from list of 'all' languages
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_interop_tests.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py index fcc752fdea..89725c10a6 100755 --- a/tools/run_tests/run_interop_tests.py +++ b/tools/run_tests/run_interop_tests.py @@ -947,9 +947,13 @@ if not args.use_docker and servers: print('Running interop servers is only supported with --use_docker option enabled.') sys.exit(1) + +# we want to include everything but objc in 'all' +# because objc won't run on non-mac platforms +all_but_objc = set(six.iterkeys(_LANGUAGES)) - set(['objc']) languages = set(_LANGUAGES[l] for l in itertools.chain.from_iterable( - six.iterkeys(_LANGUAGES) if x == 'all' else [x] + all_but_objc if x == 'all' else [x] for x in args.language)) languages_http2_clients_for_http2_server_interop = set() |