Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Unified Diff: tools/run-bisect-perf-regression.py

Issue 1823803004: Add 'try_job_id' to bisect option. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add try_job_id to run-bisect-perf-regression.py Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/auto_bisect/bisect_perf_regression.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-bisect-perf-regression.py
diff --git a/tools/run-bisect-perf-regression.py b/tools/run-bisect-perf-regression.py
index 3be8389088a785e451f71cb12ff617efb0239fee..52019db9b68529f70ab91d9402e82ff35202055b 100755
--- a/tools/run-bisect-perf-regression.py
+++ b/tools/run-bisect-perf-regression.py
@@ -220,6 +220,9 @@ def _CreateBisectOptionsFromConfig(config):
if config.has_key('bug_id') and str(config['bug_id']).isdigit():
opts_dict['bug_id'] = config['bug_id']
+ if config.has_key('try_job_id'):
+ opts_dict['try_job_id'] = config['try_job_id']
+
opts_dict['build_preference'] = 'ninja'
opts_dict['output_buildbot_annotations'] = True
@@ -527,6 +530,7 @@ def _RunBisectionScript(
('bisect_mode', '--bisect_mode'),
('improvement_direction', '--improvement_direction'),
('bug_id', '--bug_id'),
+ ('try_job_id', '--try_job_id'),
('builder_type', '--builder_type'),
('target_arch', '--target_arch'),
('required_initial_confidence', '--required_initial_confidence'),
« no previous file with comments | « tools/auto_bisect/bisect_perf_regression.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698