Chromium Code Reviews| 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 a461a017c9c9889c419342176af9cf3c90767dcc..fd345e3502155968577f213bb5fd4e1b446edb4f 100644 |
| --- a/scripts/slave/recipe_modules/auto_bisect/api.py |
| +++ b/scripts/slave/recipe_modules/auto_bisect/api.py |
| @@ -131,11 +131,11 @@ class AutoBisectApi(recipe_api.RecipeApi): |
| buildername = api.properties.get('buildername') |
| api.chromium_tests.configure_build(mastername, buildername) |
| api.gclient.apply_config('perf') |
| - update_step, master_dict, _ = \ |
| + update_step, master_dicts, _ = \ |
| api.chromium_tests.prepare_checkout( |
| mastername, buildername, |
| root_solution_revision=test_config_params['revision']) |
| - self.start_test_run_for_bisect(api, update_step, master_dict, |
| + self.start_test_run_for_bisect(api, update_step, master_dicts[0], |
|
luqui
2016/01/05 23:02:35
This [0] is suspicious. Is it clear during constr
Ken Russell (switch to Gerrit)
2016/01/06 00:38:24
No, I didn't do a good job documenting the return
Sergey Berezin
2016/01/06 01:50:56
I suspect that bisect would only run waterfall bui
|
| test_config_params, run_locally=True) |
| def start_test_run_for_bisect(self, api, update_step, master_dict, |