| Index: scripts/slave/recipe_modules/auto_bisect/api.py
|
| diff --git a/scripts/slave/recipe_modules/auto_bisect/api.py b/scripts/slave/recipe_modules/auto_bisect/api.py
|
| index 685cda3f05fb38e751cc623caa234536d5cbafc4..c0dbc11b3a0f388107f25082ca1bec6426da10cc 100644
|
| --- a/scripts/slave/recipe_modules/auto_bisect/api.py
|
| +++ b/scripts/slave/recipe_modules/auto_bisect/api.py
|
| @@ -40,13 +40,12 @@
|
| self.override_poll_interval = None
|
| self.bot_db = None
|
| # Repo for triggering build jobs.
|
| - self.svn_repo_url = 'svn://svn.chromium.org/chrome-try/try-perf'
|
| + self.svn_repo_url = 'svn://svn.chromium.org/chrome-try/try-perf'
|
| # The variable below are set and used for the internal bisects.
|
| self.buildurl_gs_prefix = None
|
| self.internal_bisect = False
|
| self.builder_bot = None
|
| self.full_deploy_script = None
|
| -
|
|
|
| def perform_bisect(self, **flags):
|
| return local_bisect.perform_bisect(self, **flags)
|
| @@ -156,7 +155,7 @@
|
| except self.m.step.StepFailure: # pragma: no cover
|
| self.surface_result('BAD_REV')
|
| raise
|
| -
|
| +
|
|
|
| def run_bisect_script(self, **kwargs):
|
| """Executes src/tools/run-perf-bisect-regression.py to perform bisection."""
|
| @@ -324,7 +323,7 @@
|
| '-v',
|
| '--blacklist-file', self.m.chromium_android.blacklist_file,
|
| '--perfbot',
|
| - '--release',
|
| + '--release',
|
| ]
|
| if args:
|
| full_deploy_flags += args
|
| @@ -334,7 +333,7 @@
|
| full_deploy_flags,
|
| infra_step=True,
|
| env=self.m.chromium.get_env())
|
| -
|
| +
|
| def start_try_job(self, api, update_step=None, bot_db=None, **kwargs):
|
| """Starts a recipe bisect job, perf test run, or legacy bisect run.
|
|
|
|
|