diff options
author | murgatroid99 <mlumish@google.com> | 2016-10-21 15:54:42 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-10-21 15:54:42 -0700 |
commit | b516cadc2a9f521ba02282475db8eac987b4f691 (patch) | |
tree | 522fedb19f91fce46ebfe2ec0040660f45ccfa19 /tools/run_tests/performance | |
parent | 6a30178ef2c936a8929d03a3163647882110052e (diff) | |
parent | d9cbec465db305368b04d13409665bd711fa78cf (diff) |
Merge branch 'master' into uv_core_transport
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 0a16a1580f..c1a23a9342 100644 --- a/tools/run_tests/performance/scenario_config.py +++ b/tools/run_tests/performance/scenario_config.py @@ -219,6 +219,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( |