aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Eric Gribkoff <ericgribkoff@google.com>2017-01-06 09:16:29 -0800
committerGravatar Eric Gribkoff <ericgribkoff@google.com>2017-01-06 09:16:29 -0800
commitced8702d1d184fe83bbdcdfc97868a9f94868986 (patch)
tree1310485e70816416b11e62df415436b5b744e53a /tools
parent13ac3031aaf630956da68d6debe246c62922224d (diff)
Enable advanced Java interop tests.
Add response parameters to custom_metadata streaming request for Node and PHP clients. The Java server does not respond with separate initial and trailing metadata when there is no response data - it is only emiting the requested trailing metadata. Adding the response parameters to the test (in accordance with the specification) avoids this, but I will open a separate issue to investigate the Java behavior.
Diffstat (limited to 'tools')
-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 c14f18af81..981e38b813 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -179,10 +179,10 @@ class JavaLanguage:
return {}
def unimplemented_test_cases(self):
- return _SKIP_ADVANCED + _SKIP_COMPRESSION
+ return _SKIP_COMPRESSION
def unimplemented_test_cases_server(self):
- return _SKIP_ADVANCED + _SKIP_COMPRESSION
+ return _SKIP_COMPRESSION
def __str__(self):
return 'java'