summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorprasadv <prasadv@chromium.org>2015-05-28 14:36:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-28 21:37:16 +0000
commitdb4d433ae7ce4cd1a0770798328db86f933bcc03 (patch)
treee4e5e7fe627351f75b57f4d31fb9237e423d8e44 /tools
parent6454f3bb66916a06391b5593382f28e728297973 (diff)
downloadchromium_src-db4d433ae7ce4cd1a0770798328db86f933bcc03.zip
chromium_src-db4d433ae7ce4cd1a0770798328db86f933bcc03.tar.gz
chromium_src-db4d433ae7ce4cd1a0770798328db86f933bcc03.tar.bz2
Avoid early abort when the bisect mode is set to return_code
BUG= Review URL: https://codereview.chromium.org/1160813006 Cr-Commit-Position: refs/heads/master@{#331857}
Diffstat (limited to 'tools')
-rwxr-xr-xtools/auto_bisect/bisect_perf_regression.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/auto_bisect/bisect_perf_regression.py b/tools/auto_bisect/bisect_perf_regression.py
index 233a62d..68cd633 100755
--- a/tools/auto_bisect/bisect_perf_regression.py
+++ b/tools/auto_bisect/bisect_perf_regression.py
@@ -2345,7 +2345,8 @@ class BisectPerformanceMetrics(object):
# Check how likely it is that the good and bad results are different
# beyond chance-induced variation.
confidence_error = False
- if not self.opts.debug_ignore_regression_confidence:
+ if not (self.opts.debug_ignore_regression_confidence or
+ self._IsBisectModeReturnCode()):
confidence_error = _CheckRegressionConfidenceError(good_revision,
bad_revision,
known_good_value,