aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-11-19 16:24:09 -0800
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-11-19 16:24:09 -0800
commit201d6e13045d96a451ab8cd69395ef1c1ed8adcc (patch)
treec5067579b0caef66d09133943fb6c281e6d446d8 /tools/run_tests/run_interop_tests.py
parent2440f07de8e8816c74c330759d7fa98fc06c27b3 (diff)
parent59096b404462742a769696e56510c7ea1bdc6946 (diff)
Merge pull request #4161 from carl-mastrangelo/moreInterop1
Add framing http2 test case, enable verbose output, and properly skip 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 37b8ab19f6..5435a1d02f 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -169,7 +169,7 @@ class Http2Client:
self.safename = str(self)
def client_args(self):
- return ['tools/http2_interop/http2_interop.test']
+ return ['tools/http2_interop/http2_interop.test', '-test.v']
def cloud_to_prod_env(self):
return {}
@@ -305,7 +305,7 @@ _TEST_CASES = ['large_unary', 'empty_unary', 'ping_pong',
_AUTH_TEST_CASES = ['compute_engine_creds', 'jwt_token_creds',
'oauth2_auth_token', 'per_rpc_creds']
-_HTTP2_TEST_CASES = ["tls"]
+_HTTP2_TEST_CASES = ["tls", "framing"]
def docker_run_cmdline(cmdline, image, docker_args=[], cwd=None, environ=None):
"""Wraps given cmdline array to create 'docker run' cmdline from it."""