Skip to content
Snippets Groups Projects
Commit aa296fec authored by Craig Tiller's avatar Craig Tiller
Browse files

Call the right function

parent dce26f42
No related branches found
No related tags found
No related merge requests found
...@@ -235,7 +235,7 @@ for bm_name in args.benchmarks: ...@@ -235,7 +235,7 @@ for bm_name in args.benchmarks:
if args.diff_perf: if args.diff_perf:
for bm_name in args.benchmarks: for bm_name in args.benchmarks:
run_summary(bm_name, 'opt', '%s.new' % bm_name) run_summary(bm_name, 'opt', '%s.new' % bm_name)
where_am_i = subprocess.check_call(['git', 'rev-parse', '--abbrev-ref', 'HEAD']) where_am_i = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD'])
subprocess.check_call(['git', 'checkout', args.diff_perf]) subprocess.check_call(['git', 'checkout', args.diff_perf])
comparables = [] comparables = []
subprocess.check_call(['make', 'clean']) subprocess.check_call(['make', 'clean'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment