| 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()
|
|
|