aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-07-01 08:39:41 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-07-01 08:39:41 -0700
commit71ed007847622b8aff49136cbf77de4caa790d79 (patch)
tree9652b3d27d39d7d2e9d65f69c4f39d6698363d8b /tools/run_tests/run_interop_tests.py
parentacbf8c290afe4f3f0e690162f17b63df8096280f (diff)
Change run_interop_tests.py to run status_code_and_message test for Go.
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index e3af721ee5..d336c27b43 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -59,8 +59,9 @@ _SKIP_COMPRESSION = ['client_compressed_unary',
'server_compressed_unary',
'server_compressed_streaming']
-_SKIP_ADVANCED = ['custom_metadata', 'status_code_and_message',
- 'unimplemented_method']
+_SKIP_ADVANCED_GO = ['custom_metadata', 'unimplemented_method']
+
+_SKIP_ADVANCED = _SKIP_ADVANCED_GO + ['status_code_and_message']
_TEST_TIMEOUT = 3*60
@@ -172,10 +173,10 @@ class GoLanguage:
return {}
def unimplemented_test_cases(self):
- return _SKIP_ADVANCED + _SKIP_COMPRESSION
+ return _SKIP_ADVANCED_GO + _SKIP_COMPRESSION
def unimplemented_test_cases_server(self):
- return _SKIP_ADVANCED + _SKIP_COMPRESSION
+ return _SKIP_ADVANCED_GO + _SKIP_COMPRESSION
def __str__(self):
return 'go'