Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
9c8e9be1
Commit
9c8e9be1
authored
Apr 14, 2017
by
Makarand Dharmapurikar
Browse files
Options
Downloads
Patches
Plain Diff
removed 'objc' from list of 'all' languages
parent
60df47a1
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/run_tests/run_interop_tests.py
+5
-1
5 additions, 1 deletion
tools/run_tests/run_interop_tests.py
with
5 additions
and
1 deletion
tools/run_tests/run_interop_tests.py
+
5
−
1
View file @
9c8e9be1
...
...
@@ -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
()
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment