| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 'client.v8', | 225 'client.v8', |
| 226 'V8 Linux64 - internal snapshot', | 226 'V8 Linux64 - internal snapshot', |
| 227 'one_failure', | 227 'one_failure', |
| 228 ) + | 228 ) + |
| 229 api.override_step_data('Check', api.v8.one_failure()) | 229 api.override_step_data('Check', api.v8.one_failure()) |
| 230 ) | 230 ) |
| 231 | 231 |
| 232 yield ( | 232 yield ( |
| 233 api.v8.test( | 233 api.v8.test( |
| 234 'client.v8', | 234 'client.v8', |
| 235 'V8 Linux64', | |
| 236 'one_failure_build_env_not_supported', | |
| 237 ) + | |
| 238 api.override_step_data('Check', api.v8.one_failure()) + | |
| 239 api.properties(build_environment=None) | |
| 240 ) | |
| 241 | |
| 242 yield ( | |
| 243 api.v8.test( | |
| 244 'client.v8', | |
| 245 'V8 Fuzzer', | 235 'V8 Fuzzer', |
| 246 'fuzz_archive', | 236 'fuzz_archive', |
| 247 ) + | 237 ) + |
| 248 api.override_step_data('Fuzz on Ubuntu-12.04', retcode=1) | 238 api.override_step_data('Fuzz on Ubuntu-12.04', retcode=1) |
| 249 ) | 239 ) |
| 250 | 240 |
| 251 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps: | 241 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps: |
| 252 # Bisect a0 -> no failures. | 242 # Bisect a0 -> no failures. |
| 253 # Bisect a2 -> failures. | 243 # Bisect a2 -> failures. |
| 254 # Bisect a1 -> no failures. | 244 # Bisect a1 -> no failures. |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 api.v8.test( | 381 api.v8.test( |
| 392 'tryserver.v8', | 382 'tryserver.v8', |
| 393 'v8_linux_rel_ng_triggered', | 383 'v8_linux_rel_ng_triggered', |
| 394 'slow_tests', | 384 'slow_tests', |
| 395 requester='commit-bot@chromium.org', | 385 requester='commit-bot@chromium.org', |
| 396 patch_project='v8', | 386 patch_project='v8', |
| 397 blamelist=['dude@chromium.org'], | 387 blamelist=['dude@chromium.org'], |
| 398 ) + api.override_step_data( | 388 ) + api.override_step_data( |
| 399 'Check', api.v8.output_json(unmarked_slow_test=True)) | 389 'Check', api.v8.output_json(unmarked_slow_test=True)) |
| 400 ) | 390 ) |
| OLD | NEW |