| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 DEPS = [ | 5 DEPS = [ |
| 6 'archive', | 6 'archive', |
| 7 'chromium', | 7 'chromium', |
| 8 'gclient', | 8 'gclient', |
| 9 'recipe_engine/json', | 9 'recipe_engine/json', |
| 10 'recipe_engine/path', | 10 'recipe_engine/path', |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 ) + | 260 ) + |
| 261 api.v8.fail('Mjsunit') + | 261 api.v8.fail('Mjsunit') + |
| 262 api.time.step(7) | 262 api.time.step(7) |
| 263 ) | 263 ) |
| 264 | 264 |
| 265 # Bisect over range a1, a2, a3. Assume a2 is the culprit. | 265 # Bisect over range a1, a2, a3. Assume a2 is the culprit. |
| 266 # Same as above with a swarming builder_tester. | 266 # Same as above with a swarming builder_tester. |
| 267 yield ( | 267 yield ( |
| 268 api.v8.test( | 268 api.v8.test( |
| 269 'client.v8', | 269 'client.v8', |
| 270 'V8 Linux - swarming staging 3', | 270 'V8 Linux - shared', |
| 271 'bisect_swarming', | 271 'bisect_swarming', |
| 272 ) + | 272 ) + |
| 273 api.v8.fail('Check') + | 273 api.v8.fail('Check') + |
| 274 api.v8.fail('Bisect a2.Retry') + | 274 api.v8.fail('Bisect a2.Retry') + |
| 275 api.time.step(120) | 275 api.time.step(120) |
| 276 ) | 276 ) |
| 277 | 277 |
| 278 # Bisect over range a1, a2, a3. Assume a3 is the culprit. This is a tester | 278 # Bisect over range a1, a2, a3. Assume a3 is the culprit. This is a tester |
| 279 # and the build for a2 is not available. Steps: | 279 # and the build for a2 is not available. Steps: |
| 280 # Bisect a0 -> no failures. | 280 # Bisect a0 -> no failures. |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 api.v8.test( | 338 api.v8.test( |
| 339 'client.v8', | 339 'client.v8', |
| 340 'V8 Linux - predictable', | 340 'V8 Linux - predictable', |
| 341 'bisect_one_change', | 341 'bisect_one_change', |
| 342 ) + | 342 ) + |
| 343 api.v8.fail('Mjsunit') + | 343 api.v8.fail('Mjsunit') + |
| 344 api.override_step_data( | 344 api.override_step_data( |
| 345 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + | 345 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + |
| 346 api.time.step(120) | 346 api.time.step(120) |
| 347 ) | 347 ) |
| OLD | NEW |