| 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 'V8 Linux - predictable', | 362 'V8 Linux - predictable', |
| 363 'bisect_one_change', | 363 'bisect_one_change', |
| 364 ) + | 364 ) + |
| 365 api.v8.fail('Mjsunit') + | 365 api.v8.fail('Mjsunit') + |
| 366 api.override_step_data( | 366 api.override_step_data( |
| 367 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + | 367 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + |
| 368 api.override_step_data( | 368 api.override_step_data( |
| 369 'Bisect.Get change range', | 369 'Bisect.Get change range', |
| 370 api.v8.example_bisection_range_one_change(), | 370 api.v8.example_bisection_range_one_change(), |
| 371 ) + | 371 ) + |
| 372 | |
| 373 api.time.step(120) | 372 api.time.step(120) |
| 374 ) | 373 ) |
| 375 | 374 |
| 376 # Explicitly highlight slow tests not marked as slow. | 375 # Explicitly highlight slow tests not marked as slow. |
| 377 yield ( | 376 yield ( |
| 378 api.v8.test( | 377 api.v8.test( |
| 379 'tryserver.v8', | 378 'tryserver.v8', |
| 380 'v8_linux_rel_ng_triggered', | 379 'v8_linux_rel_ng_triggered', |
| 381 'slow_tests', | 380 'slow_tests', |
| 382 requester='commit-bot@chromium.org', | 381 requester='commit-bot@chromium.org', |
| 383 patch_project='v8', | 382 patch_project='v8', |
| 384 blamelist=['dude@chromium.org'], | 383 blamelist=['dude@chromium.org'], |
| 385 ) + api.override_step_data( | 384 ) + |
| 385 api.override_step_data( |
| 386 'Check', api.v8.output_json(unmarked_slow_test=True)) | 386 'Check', api.v8.output_json(unmarked_slow_test=True)) |
| 387 ) | 387 ) |
| 388 |
| 389 yield ( |
| 390 api.v8.test( |
| 391 'client.v8', |
| 392 'V8 Linux64 - builder', |
| 393 'with_gn', |
| 394 ) + |
| 395 api.override_step_data( |
| 396 'generate_build_files', api.raw_io.stream_output( |
| 397 'Writing """\\\n' |
| 398 'goma_dir = "/b/build/slave/cache/cipd/goma"\n' |
| 399 'target_cpu = "x64"\n' |
| 400 'use_goma = true\n' |
| 401 '""" to /path/to/args.gn.\n' |
| 402 'moar\n')) |
| 403 ) |
| OLD | NEW |