| 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 import collections | 5 import collections |
| 6 | 6 |
| 7 from recipe_engine.types import freeze | 7 from recipe_engine.types import freeze |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'amp', | 10 'amp', |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 ) | 562 ) |
| 563 | 563 |
| 564 yield ( | 564 yield ( |
| 565 api.test('amp_test_local_fallback_failure') + | 565 api.test('amp_test_local_fallback_failure') + |
| 566 props(buildername='android_amp', | 566 props(buildername='android_amp', |
| 567 mastername='tryserver.chromium.linux') + | 567 mastername='tryserver.chromium.linux') + |
| 568 api.platform.name('linux') + | 568 api.platform.name('linux') + |
| 569 suppress_analyze() + | 569 suppress_analyze() + |
| 570 api.override_step_data('[trigger] base_unittests (with patch)', | 570 api.override_step_data('[trigger] base_unittests (with patch)', |
| 571 retcode=1) + | 571 retcode=1) + |
| 572 api.override_step_data('base_unittests.base_unittests (with patch)', | 572 api.override_step_data('base_unittests (with patch)', |
| 573 canned_test(passing=False), retcode=1) | 573 canned_test(passing=False), retcode=1) |
| 574 ) | 574 ) |
| 575 | 575 |
| 576 yield ( | 576 yield ( |
| 577 api.test('compile_failure_without_patch_deapply_fn') + | 577 api.test('compile_failure_without_patch_deapply_fn') + |
| 578 props() + | 578 props() + |
| 579 api.platform.name('linux') + | 579 api.platform.name('linux') + |
| 580 api.override_step_data('read test spec', api.json.output({ | 580 api.override_step_data('read test spec', api.json.output({ |
| 581 'Linux Tests': { | 581 'Linux Tests': { |
| 582 'gtest_tests': ['base_unittests'], | 582 'gtest_tests': ['base_unittests'], |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1121 api.test_utils.canned_test_output(passing=True)) | 1121 api.test_utils.canned_test_output(passing=True)) |
| 1122 ) | 1122 ) |
| 1123 | 1123 |
| 1124 yield ( | 1124 yield ( |
| 1125 api.test('use_v8_patch_on_blink_trybot') + | 1125 api.test('use_v8_patch_on_blink_trybot') + |
| 1126 props(mastername='tryserver.blink', | 1126 props(mastername='tryserver.blink', |
| 1127 buildername='mac_blink_rel', | 1127 buildername='mac_blink_rel', |
| 1128 patch_project='v8') + | 1128 patch_project='v8') + |
| 1129 api.platform.name('mac') | 1129 api.platform.name('mac') |
| 1130 ) | 1130 ) |
| OLD | NEW |