diff options
author | Craig Tiller <ctiller@google.com> | 2016-10-24 14:49:18 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-10-24 14:49:18 -0700 |
commit | fe8c5012d31e29940c2771b6e36cc8042dfb2fd9 (patch) | |
tree | adc833fae928772de973ab5e79595fdca549da9c /tools/run_tests/performance | |
parent | 3798e607cc7a947ee64124ba147ab404692b851b (diff) | |
parent | 0ac60ca9d9b2541c058354e1b331234064493521 (diff) |
Merge github.com:grpc/grpc into buffer_pools_for_realsies
Diffstat (limited to 'tools/run_tests/performance')
-rw-r--r-- | tools/run_tests/performance/scenario_config.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py index 13bd629523..3e339c22c5 100644 --- a/tools/run_tests/performance/scenario_config.py +++ b/tools/run_tests/performance/scenario_config.py @@ -222,6 +222,16 @@ class CXXLanguage: server_core_limit=1, async_server_threads=1, secure=secure) + yield _ping_pong_scenario( + 'cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_%s' % + (secstr), + rpc_type='UNARY', + client_type='ASYNC_CLIENT', + server_type='SYNC_SERVER', + unconstrained_client='async', + secure=secure, + categories=smoketest_categories + [SCALABLE]) + for rpc_type in ['unary', 'streaming']: for synchronicity in ['sync', 'async']: yield _ping_pong_scenario( |