aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@gmail.com>2016-10-28 16:08:40 -0700
committerGravatar GitHub <noreply@github.com>2016-10-28 16:08:40 -0700
commit393526334c45816c7aa1dc87b1a61f72e5a752c5 (patch)
treebb7cd287b89bde7b5658d9be1af53edeecafcfee /tools
parent086e28d5f5eba09576c18cef075a3434de2caaa7 (diff)
parent45ebd355cde0be8cb121af8b82f75d208c4efbdf (diff)
Merge pull request #8552 from ncteisen/cpp_unimplemented_service
Implemenet New Interop Test: Cpp Unimplemented Service
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_interop_tests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index 0c6efda1f4..c73de6b717 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -64,7 +64,9 @@ _SKIP_SERVER_COMPRESSION = ['server_compressed_unary',
_SKIP_COMPRESSION = _SKIP_CLIENT_COMPRESSION + _SKIP_SERVER_COMPRESSION
-_SKIP_ADVANCED_GO = ['custom_metadata', 'unimplemented_method']
+_SKIP_ADVANCED_GO = ['custom_metadata',
+ 'unimplemented_method',
+ 'unimplemented_service']
_SKIP_ADVANCED = _SKIP_ADVANCED_GO + ['status_code_and_message']
@@ -416,7 +418,8 @@ _TEST_CASES = ['large_unary', 'empty_unary', 'ping_pong',
'timeout_on_sleeping_server', 'custom_metadata',
'status_code_and_message', 'unimplemented_method',
'client_compressed_unary', 'server_compressed_unary',
- 'client_compressed_streaming', 'server_compressed_streaming']
+ 'client_compressed_streaming', 'server_compressed_streaming',
+ 'unimplemented_service']
_AUTH_TEST_CASES = ['compute_engine_creds', 'jwt_token_creds',
'oauth2_auth_token', 'per_rpc_creds']