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

Unified Diff: scripts/slave/recipe_modules/auto_bisect/api.py

Issue 2045043002: Allow multiple devices on bisects hosts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Update unexpected files Created 4 years, 6 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/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 c0dbc11b3a0f388107f25082ca1bec6426da10cc..685cda3f05fb38e751cc623caa234536d5cbafc4 100644
--- a/scripts/slave/recipe_modules/auto_bisect/api.py
+++ b/scripts/slave/recipe_modules/auto_bisect/api.py
@@ -40,13 +40,14 @@ class AutoBisectApi(recipe_api.RecipeApi):
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)
@@ -155,7 +156,7 @@ class AutoBisectApi(recipe_api.RecipeApi):
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."""
@@ -323,7 +324,7 @@ class AutoBisectApi(recipe_api.RecipeApi):
'-v',
'--blacklist-file', self.m.chromium_android.blacklist_file,
'--perfbot',
- '--release',
+ '--release',
]
if args:
full_deploy_flags += args
@@ -333,7 +334,7 @@ class AutoBisectApi(recipe_api.RecipeApi):
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.

Powered by Google App Engine
This is Rietveld 408576698