aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-05-10 08:25:50 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-05-10 08:25:50 -0700
commitade3a79553c58af852e2ded39bc4d2f7742c4cd0 (patch)
treea14c1b789f3bf3a7a92d8f5ec4c6938872ec5281 /tools/run_tests
parentb45e8c49ff95efb21d79712b2f8098fc8ec8e2ff (diff)
parentdae51b0fe5fcc85d2ab698d417d711e39286b380 (diff)
Merge pull request #6498 from jtattermusch/csharp_server_improvements
C# server performance improvements
Diffstat (limited to 'tools/run_tests')
-rw-r--r--tools/run_tests/performance/scenario_config.py20
1 files changed, 9 insertions, 11 deletions
diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py
index d393709623..8b23995149 100644
--- a/tools/run_tests/performance/scenario_config.py
+++ b/tools/run_tests/performance/scenario_config.py
@@ -259,18 +259,16 @@ class CSharpLanguage:
'csharp_protobuf_sync_to_async_unary_ping_pong', rpc_type='UNARY',
client_type='SYNC_CLIENT', server_type='ASYNC_SERVER')
- # TODO(jtattermusch): scenario works locally but fails on jenkins
- #yield _ping_pong_scenario(
- # 'csharp_protobuf_async_unary_qps_unconstrained', rpc_type='UNARY',
- # client_type='ASYNC_CLIENT', server_type='ASYNC_SERVER',
- # use_unconstrained_client=True,
- # categories=[SMOKETEST])
+ yield _ping_pong_scenario(
+ 'csharp_protobuf_async_unary_qps_unconstrained', rpc_type='UNARY',
+ client_type='ASYNC_CLIENT', server_type='ASYNC_SERVER',
+ use_unconstrained_client=True,
+ categories=[SMOKETEST])
- # TODO(jtattermusch): scenario works locally but fails on jenkins
- #yield _ping_pong_scenario(
- # 'csharp_protobuf_async_streaming_qps_unconstrained', rpc_type='STREAMING',
- # client_type='ASYNC_CLIENT', server_type='ASYNC_SERVER',
- # use_unconstrained_client=True)
+ yield _ping_pong_scenario(
+ 'csharp_protobuf_async_streaming_qps_unconstrained', rpc_type='STREAMING',
+ client_type='ASYNC_CLIENT', server_type='ASYNC_SERVER',
+ use_unconstrained_client=True)
yield _ping_pong_scenario(
'csharp_to_cpp_protobuf_sync_unary_ping_pong', rpc_type='UNARY',