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

Unified Diff: scripts/slave/recipes/bisect.py

Issue 940123005: Adding ability to bisect recipe to bisect into dependency repos. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@hax
Patch Set: Addressing feedback, adding TODOs Created 5 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
Index: scripts/slave/recipes/bisect.py
diff --git a/scripts/slave/recipes/bisect.py b/scripts/slave/recipes/bisect.py
index e9475d0496b46c9b256a610d422c7248d75d49c1..03821df46712a6352ef3a61b14756e0e6040d1f0 100644
--- a/scripts/slave/recipes/bisect.py
+++ b/scripts/slave/recipes/bisect.py
@@ -32,7 +32,8 @@ def GenSteps(api):
_ensure_checkout(api)
if (not bisector.failed and bisector.check_improvement_direction() and
bisector.check_regression_confidence()):
- _bisect_main_loop(bisector)
+ if not bisector.check_bisect_finished(bisector.good_rev):
+ _bisect_main_loop(bisector)
else: #pragma: no cover
bisector.bisect_over = True
bisector.print_result()
« no previous file with comments | « scripts/slave/recipe_modules/auto_bisect/test_results_cache.py ('k') | scripts/slave/recipes/bisect.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698