diff options
author | Stanley Cheung <stanley.cheung@gmail.com> | 2017-10-13 10:52:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-13 10:52:34 -0700 |
commit | b5897b90c3a890b18546065734806ba4f2ec46f9 (patch) | |
tree | 3431da1a470da02391ba33b595a9e6e03dca6cf1 /tools/run_tests/performance | |
parent | d6fe8e4357c78fc2d8f42fdcf7dffb15206cacd4 (diff) | |
parent | df6e3750b24a584daa823e01b2a69ac65f59af83 (diff) |
Merge pull request #12796 from pongad/fix-php
php: fix scenario_config command
Diffstat (limited to 'tools/run_tests/performance')
-rw-r--r-- | tools/run_tests/performance/scenario_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py index 8f01eb4b2a..50ca0ee3ae 100644 --- a/tools/run_tests/performance/scenario_config.py +++ b/tools/run_tests/performance/scenario_config.py @@ -809,7 +809,7 @@ class Php7Language: def worker_cmdline(self): if self.php7_protobuf_c: - return ['tools/run_tests/performance/run_worker_php.sh --use_protobuf_c_extension'] + return ['tools/run_tests/performance/run_worker_php.sh', '--use_protobuf_c_extension'] return ['tools/run_tests/performance/run_worker_php.sh'] def worker_port_offset(self): @@ -821,7 +821,7 @@ class Php7Language: php7_extension_mode='php7_protobuf_php_extension' if self.php7_protobuf_c: php7_extension_mode='php7_protobuf_c_extension' - + yield _ping_pong_scenario( '%s_to_cpp_protobuf_sync_unary_ping_pong' % php7_extension_mode, rpc_type='UNARY', client_type='SYNC_CLIENT', server_type='SYNC_SERVER', |