| 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 'depot_tools/gclient', | 8 'depot_tools/gclient', |
| 9 'recipe_engine/json', | 9 'recipe_engine/json', |
| 10 'recipe_engine/path', | 10 'recipe_engine/path', |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 api.v8.fail('Mjsunit') + | 362 api.v8.fail('Mjsunit') + |
| 363 api.override_step_data( | 363 api.override_step_data( |
| 364 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + | 364 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + |
| 365 api.override_step_data( | 365 api.override_step_data( |
| 366 'Bisect.Get change range', | 366 'Bisect.Get change range', |
| 367 api.v8.example_bisection_range_one_change(), | 367 api.v8.example_bisection_range_one_change(), |
| 368 ) + | 368 ) + |
| 369 | 369 |
| 370 api.time.step(120) | 370 api.time.step(120) |
| 371 ) | 371 ) |
| 372 |
| 373 # Explicitly highlight slow tests not marked as slow. |
| 374 yield ( |
| 375 api.v8.test( |
| 376 'tryserver.v8', |
| 377 'v8_linux_rel_ng_triggered', |
| 378 'slow_tests', |
| 379 requester='commit-bot@chromium.org', |
| 380 patch_project='v8', |
| 381 blamelist=['dude@chromium.org'], |
| 382 ) + api.override_step_data( |
| 383 'Check', api.v8.output_json(unmarked_slow_test=True)) |
| 384 ) |
| OLD | NEW |