Move trickle to the end: it takes a while, and its less important (in the face of failures)

pull/9984/head
Craig Tiller 8 years ago
parent 0d8b11fe21
commit 0dc57ad46f
  1. 7
      tools/run_tests/run_microbenchmark.py

@ -199,8 +199,7 @@ argp.add_argument('-c', '--collect',
default=sorted(collectors.keys()), default=sorted(collectors.keys()),
help='Which collectors should be run against each benchmark') help='Which collectors should be run against each benchmark')
argp.add_argument('-b', '--benchmarks', argp.add_argument('-b', '--benchmarks',
default=['bm_fullstack_trickle', default=['bm_fullstack_unary_ping_pong',
'bm_fullstack_unary_ping_pong',
'bm_fullstack_streaming_ping_pong', 'bm_fullstack_streaming_ping_pong',
'bm_fullstack_streaming_pump', 'bm_fullstack_streaming_pump',
'bm_closure', 'bm_closure',
@ -208,7 +207,9 @@ argp.add_argument('-b', '--benchmarks',
'bm_call_create', 'bm_call_create',
'bm_error', 'bm_error',
'bm_chttp2_hpack', 'bm_chttp2_hpack',
'bm_metadata'], 'bm_metadata',
'bm_fullstack_trickle',
],
nargs='+', nargs='+',
type=str, type=str,
help='Which microbenchmarks should be run') help='Which microbenchmarks should be run')

Loading…
Cancel
Save