aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-10-15 17:52:06 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-10-15 18:37:12 -0700
commit73b3eea149c9ad96985e056fe4cd692298734084 (patch)
treedc2882998a323b7fc39a9d0f7f08a6d632062c74 /tools/run_tests/run_interop_tests.py
parent5e75116b9f8e0c60e3a3705aac132ee5fd2ac491 (diff)
accept --use_tls=true and --use_test_ca=true in ruby
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index a4b6a747ed..11f6e1c76d 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -249,17 +249,17 @@ class RubyLanguage:
def cloud_to_prod_args(self):
return (self.client_cmdline_base + _CLOUD_TO_PROD_BASE_ARGS +
- ['--use_tls'])
+ ['--use_tls=true'])
def cloud_to_cloud_args(self):
return (self.client_cmdline_base + _CLOUD_TO_CLOUD_BASE_ARGS +
- ['--use_tls', '--use_test_ca'])
+ ['--use_tls=true', '--use_test_ca=true'])
def cloud_to_prod_env(self):
return _SSL_CERT_ENV
def server_args(self):
- return ['ruby', 'src/ruby/bin/interop/interop_server.rb', '--use_tls']
+ return ['ruby', 'src/ruby/bin/interop/interop_server.rb', '--use_tls=true']
def global_env(self):
return {}