aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2015-10-01 11:42:05 -0700
committerGravatar yang-g <yangg@google.com>2015-10-01 11:42:05 -0700
commit54db83d06d9655dcc8ef1c1359538bc1e13031d6 (patch)
tree62e791b2262e4ac74908a67fe58f46b2e7a0af3a /tools/run_tests/run_interop_tests.py
parent18802c778601fd560b3b31c681fbe89ddc1c2409 (diff)
fix run_interop_tests.py
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index a2fb1243cc..6445513fbe 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -53,8 +53,7 @@ _CLOUD_TO_CLOUD_BASE_ARGS = [
# supported by C core SslCredentials instead.
_SSL_CERT_ENV = { 'SSL_CERT_FILE':'/usr/local/share/grpc/roots.pem' }
-# TODO(jtatttermusch) unify usage of --enable_ssl, --use_tls and --use_tls=true
-
+# TODO(jtatttermusch) unify usage of --use_tls and --use_tls=true
class CXXLanguage:
@@ -64,11 +63,11 @@ class CXXLanguage:
def cloud_to_prod_args(self):
return (self.client_cmdline_base + _CLOUD_TO_PROD_BASE_ARGS +
- ['--enable_ssl','--use_prod_roots'])
+ ['--use_tls=true','--use_prod_roots'])
def cloud_to_cloud_args(self):
return (self.client_cmdline_base + _CLOUD_TO_CLOUD_BASE_ARGS +
- ['--enable_ssl'])
+ ['--use_tls=true'])
def cloud_to_prod_env(self):
return None
@@ -327,4 +326,4 @@ else:
jobset.message('FAILED', 'Some tests failed', do_newline=True)
tree = ET.ElementTree(root)
-tree.write('report.xml', encoding='UTF-8') \ No newline at end of file
+tree.write('report.xml', encoding='UTF-8')