| 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', | |
| 11 'depot_tools/bot_update', | 10 'depot_tools/bot_update', |
| 12 'chromium', | 11 'chromium', |
| 13 'chromium_android', | 12 'chromium_android', |
| 14 'chromium_tests', | 13 'chromium_tests', |
| 15 'commit_position', | 14 'commit_position', |
| 16 'file', | 15 'file', |
| 17 'depot_tools/gclient', | 16 'depot_tools/gclient', |
| 18 'isolate', | 17 'isolate', |
| 19 'recipe_engine/json', | 18 'recipe_engine/json', |
| 20 'recipe_engine/path', | 19 'recipe_engine/path', |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 }, | 462 }, |
| 464 ], | 463 ], |
| 465 }, | 464 }, |
| 466 })) + | 465 })) + |
| 467 suppress_analyze() + | 466 suppress_analyze() + |
| 468 api.override_step_data('gl_tests (with patch) on Ubuntu-12.04', | 467 api.override_step_data('gl_tests (with patch) on Ubuntu-12.04', |
| 469 canned_test(passing=False)) | 468 canned_test(passing=False)) |
| 470 ) | 469 ) |
| 471 | 470 |
| 472 yield ( | 471 yield ( |
| 473 api.test('amp_test_failure') + | |
| 474 props(buildername='android_amp', | |
| 475 mastername='tryserver.chromium.android') + | |
| 476 api.platform.name('linux') + | |
| 477 suppress_analyze() + | |
| 478 api.override_step_data('[collect] base_unittests (with patch)', | |
| 479 canned_test(passing=False), retcode=1) | |
| 480 ) | |
| 481 | |
| 482 yield ( | |
| 483 api.test('compile_failure_without_patch_deapply_fn') + | 472 api.test('compile_failure_without_patch_deapply_fn') + |
| 484 props() + | 473 props() + |
| 485 api.platform.name('linux') + | 474 api.platform.name('linux') + |
| 486 api.override_step_data('read test spec (2)', api.json.output({ | 475 api.override_step_data('read test spec (2)', api.json.output({ |
| 487 'Linux Tests': { | 476 'Linux Tests': { |
| 488 'gtest_tests': ['base_unittests'], | 477 'gtest_tests': ['base_unittests'], |
| 489 }, | 478 }, |
| 490 }) | 479 }) |
| 491 ) + | 480 ) + |
| 492 suppress_analyze() + | 481 suppress_analyze() + |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 props(mastername='tryserver.v8', | 888 props(mastername='tryserver.v8', |
| 900 buildername='v8_linux_blink_rel', | 889 buildername='v8_linux_blink_rel', |
| 901 patch_project='v8') + | 890 patch_project='v8') + |
| 902 api.platform.name('linux') + | 891 api.platform.name('linux') + |
| 903 suppress_analyze(more_exclusions=['v8/f.*']) + | 892 suppress_analyze(more_exclusions=['v8/f.*']) + |
| 904 api.override_step_data('webkit_tests (with patch)', | 893 api.override_step_data('webkit_tests (with patch)', |
| 905 api.test_utils.canned_test_output(passing=False)) + | 894 api.test_utils.canned_test_output(passing=False)) + |
| 906 api.override_step_data('webkit_tests (without patch)', | 895 api.override_step_data('webkit_tests (without patch)', |
| 907 api.test_utils.canned_test_output(passing=True, minimal=True)) | 896 api.test_utils.canned_test_output(passing=True, minimal=True)) |
| 908 ) | 897 ) |
| OLD | NEW |