aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar yihuaz <yihuaz@google.com>2018-04-26 16:06:52 -0700
committerGravatar GitHub <noreply@github.com>2018-04-26 16:06:52 -0700
commit3450b16c5980e6b17984c4a7346dc4f1c0a97809 (patch)
tree9dca583da42d751d8a27e93a8c3b2c43d2f88201 /tools/run_tests/run_interop_tests.py
parente52fee9065673e04a9c5756cdf884860d3ba2dad (diff)
parent7e0270bfc86d701fe78e5a9bef2faacfd842fee5 (diff)
Merge pull request #15190 from yihuazhang/enable_cpp_for_alts_interop
Enable C++ in ALTS interop tests
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index 8c566655f4..aa58107ced 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -638,10 +638,10 @@ _LANGUAGES_WITH_HTTP2_CLIENTS_FOR_HTTP2_SERVER_TEST_CASES = [
]
#TODO: Add c++ when c++ ALTS interop client is ready.
-_LANGUAGES_FOR_ALTS_TEST_CASES = ['java', 'go']
+_LANGUAGES_FOR_ALTS_TEST_CASES = ['java', 'go', 'c++']
#TODO: Add c++ when c++ ALTS interop server is ready.
-_SERVERS_FOR_ALTS_TEST_CASES = ['java', 'go']
+_SERVERS_FOR_ALTS_TEST_CASES = ['java', 'go', 'c++']
_TRANSPORT_SECURITY_OPTIONS = ['tls', 'alts', 'insecure']