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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 | 548 |
549 yield ( | 549 yield ( |
550 api.test('compile_failure_ng') + | 550 api.test('compile_failure_ng') + |
551 api.platform('linux', 64) + | 551 api.platform('linux', 64) + |
552 props(mastername='tryserver.chromium.linux', | 552 props(mastername='tryserver.chromium.linux', |
553 buildername='linux_chromium_rel_ng') + | 553 buildername='linux_chromium_rel_ng') + |
554 suppress_analyze() + | 554 suppress_analyze() + |
555 api.step_data('compile (with patch)', retcode=1) | 555 api.step_data('compile (with patch)', retcode=1) |
556 ) | 556 ) |
557 | 557 |
| 558 # Test that the component rev for v8 is correctly applied |
| 559 # both on the initial checkout and after deapplying the patch. |
| 560 yield ( |
| 561 api.test('compile_failure_with_component_rev') + |
| 562 api.platform('linux', 64) + |
| 563 props(mastername='tryserver.v8', |
| 564 buildername='v8_linux_chromium_gn_rel') + |
| 565 api.properties(revision='22135') + |
| 566 api.override_step_data('read test spec', api.json.output({ |
| 567 'V8 Linux GN': { |
| 568 'additional_compile_targets': ['base_unittests'], |
| 569 }, |
| 570 }) |
| 571 ) + |
| 572 suppress_analyze() + |
| 573 api.step_data('compile (with patch)', retcode=1) |
| 574 ) |
| 575 |
558 yield ( | 576 yield ( |
559 api.test('compile_failure_without_patch_ng') + | 577 api.test('compile_failure_without_patch_ng') + |
560 api.platform('linux', 64) + | 578 api.platform('linux', 64) + |
561 props(mastername='tryserver.chromium.linux', | 579 props(mastername='tryserver.chromium.linux', |
562 buildername='linux_chromium_rel_ng') + | 580 buildername='linux_chromium_rel_ng') + |
563 suppress_analyze() + | 581 suppress_analyze() + |
564 api.step_data('compile (with patch)', retcode=1) + | 582 api.step_data('compile (with patch)', retcode=1) + |
565 api.step_data('compile (without patch)', retcode=1) | 583 api.step_data('compile (without patch)', retcode=1) |
566 ) | 584 ) |
567 | 585 |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
882 props(mastername='tryserver.v8', | 900 props(mastername='tryserver.v8', |
883 buildername='v8_linux_blink_rel', | 901 buildername='v8_linux_blink_rel', |
884 patch_project='v8') + | 902 patch_project='v8') + |
885 api.platform.name('linux') + | 903 api.platform.name('linux') + |
886 suppress_analyze(more_exclusions=['v8/f.*']) + | 904 suppress_analyze(more_exclusions=['v8/f.*']) + |
887 api.override_step_data('webkit_tests (with patch)', | 905 api.override_step_data('webkit_tests (with patch)', |
888 api.test_utils.canned_test_output(passing=False)) + | 906 api.test_utils.canned_test_output(passing=False)) + |
889 api.override_step_data('webkit_tests (without patch)', | 907 api.override_step_data('webkit_tests (without patch)', |
890 api.test_utils.canned_test_output(passing=True, minimal=True)) | 908 api.test_utils.canned_test_output(passing=True, minimal=True)) |
891 ) | 909 ) |
OLD | NEW |