aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_microbenchmark.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-10 10:44:56 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-03-10 10:44:56 -0800
commit47f37f3db33bb30496f662e77aceb87a752ac705 (patch)
tree3bb60d067cdb040cf0aa4bd1e46f515512efb9e7 /tools/run_tests/run_microbenchmark.py
parent11a93fac8ebc7fe42f36626322466800fe6f53cf (diff)
Change execution order
Diffstat (limited to 'tools/run_tests/run_microbenchmark.py')
-rwxr-xr-xtools/run_tests/run_microbenchmark.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/run_microbenchmark.py b/tools/run_tests/run_microbenchmark.py
index f41bde113a..9471110968 100755
--- a/tools/run_tests/run_microbenchmark.py
+++ b/tools/run_tests/run_microbenchmark.py
@@ -231,8 +231,8 @@ argp.add_argument('--summary_time',
args = argp.parse_args()
try:
- for bm_name in args.benchmarks:
- for collect in args.collect:
+ for collect in args.collect:
+ for bm_name in args.benchmarks:
collectors[collect](bm_name, args)
if args.diff_perf:
if 'summary' not in args.collect: