diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-03 10:44:03 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-03 10:44:03 -0700 |
commit | 942324235cc03dd3437df8c282796f5711bfa131 (patch) | |
tree | 697c343290ba47381896342b559f9fc90191eb22 | |
parent | 2fbbcd1fd49203347b668bc2b896d8cbaab158fd (diff) |
s/new/old
-rwxr-xr-x | tools/profiling/microbenchmarks/bm_diff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py index 84712e7e0d..aa4caca43d 100755 --- a/tools/profiling/microbenchmarks/bm_diff.py +++ b/tools/profiling/microbenchmarks/bm_diff.py @@ -153,8 +153,8 @@ subprocess.check_call(['git', 'checkout', args.diff_base]) try: build() jobset.run(itertools.chain( - (collect1(bm, 'opt', 'new') for bm in args.benchmarks), - (collect1(bm, 'counters', 'new') for bm in args.benchmarks), + (collect1(bm, 'opt', 'old') for bm in args.benchmarks), + (collect1(bm, 'counters', 'old') for bm in args.benchmarks), ), maxjobs=args.jobs) finally: subprocess.check_call(['git', 'checkout', where_am_i]) |