aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_microbenchmark.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-03 13:15:13 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-03-03 13:15:13 -0800
commit0dc57ad46f376356c3d4d155e974b0c37e9609df (patch)
tree7d98063779b8d158090bf6326badc92c0b718bd0 /tools/run_tests/run_microbenchmark.py
parent0d8b11fe210102e6d8ef30bb27dc05d5729005a1 (diff)
Move trickle to the end: it takes a while, and its less important (in the face of failures)
Diffstat (limited to 'tools/run_tests/run_microbenchmark.py')
-rwxr-xr-xtools/run_tests/run_microbenchmark.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/run_tests/run_microbenchmark.py b/tools/run_tests/run_microbenchmark.py
index 9153b5c1f6..4fb1d5fc7c 100755
--- a/tools/run_tests/run_microbenchmark.py
+++ b/tools/run_tests/run_microbenchmark.py
@@ -199,8 +199,7 @@ argp.add_argument('-c', '--collect',
default=sorted(collectors.keys()),
help='Which collectors should be run against each benchmark')
argp.add_argument('-b', '--benchmarks',
- default=['bm_fullstack_trickle',
- 'bm_fullstack_unary_ping_pong',
+ default=['bm_fullstack_unary_ping_pong',
'bm_fullstack_streaming_ping_pong',
'bm_fullstack_streaming_pump',
'bm_closure',
@@ -208,7 +207,9 @@ argp.add_argument('-b', '--benchmarks',
'bm_call_create',
'bm_error',
'bm_chttp2_hpack',
- 'bm_metadata'],
+ 'bm_metadata',
+ 'bm_fullstack_trickle',
+ ],
nargs='+',
type=str,
help='Which microbenchmarks should be run')