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 1543003002: Add --required_initial_confidence to legacy bisect cmd line params. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « no previous file | 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 8dce2aeaf664c9559e26f7ca2b989e6efeaadf76..e25216a25e0f0b032b48109170badee5a9fc98ee 100755
--- a/tools/run-bisect-perf-regression.py
+++ b/tools/run-bisect-perf-regression.py
@@ -210,7 +210,7 @@ def _CreateBisectOptionsFromConfig(config):
opts_dict['improvement_direction'] = int(config['improvement_direction'])
if config.has_key('required_initial_confidence'):
- opts_dict['required_initial_confidence'] = int(
+ opts_dict['required_initial_confidence'] = float(
config['required_initial_confidence'])
if config.has_key('target_arch'):
@@ -523,6 +523,7 @@ def _RunBisectionScript(
('bug_id', '--bug_id'),
('builder_type', '--builder_type'),
('target_arch', '--target_arch'),
+ ('required_initial_confidence', '--required_initial_confidence'),
]
for config_key, flag in options:
if config.has_key(config_key):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698