Chromium Code Reviews| 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 'depot_tools/bot_update', | 10 'depot_tools/bot_update', |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 278 }) | 278 }) |
| 279 ) | 279 ) |
| 280 | 280 |
| 281 # While not strictly required for coverage, record expectations for each | 281 # While not strictly required for coverage, record expectations for each |
| 282 # of the configs so we can see when and how they change. | 282 # of the configs so we can see when and how they change. |
| 283 for mastername, master_config in api.chromium_tests.trybots.iteritems(): | 283 for mastername, master_config in api.chromium_tests.trybots.iteritems(): |
| 284 for buildername, bot_config in master_config['builders'].iteritems(): | 284 for buildername, bot_config in master_config['builders'].iteritems(): |
| 285 test_name = 'full_%s_%s' % (_sanitize_nonalpha(mastername), | 285 test_name = 'full_%s_%s' % (_sanitize_nonalpha(mastername), |
| 286 _sanitize_nonalpha(buildername)) | 286 _sanitize_nonalpha(buildername)) |
| 287 yield ( | 287 yield ( |
| 288 api.test(test_name) + | 288 api.test(test_name) + |
|
brucedawson
2016/04/22 00:04:44
This indent increase is harmless but seems anomalo
Dirk Pranke
2016/04/22 00:12:01
Yeah, I was debugging something and apparently did
| |
| 289 api.chromium_tests.platform(bot_config['bot_ids']) + | 289 api.chromium_tests.platform(bot_config['bot_ids']) + |
| 290 suppress_analyze() + | 290 suppress_analyze() + |
| 291 props(mastername=mastername, buildername=buildername) | 291 props(mastername=mastername, buildername=buildername) |
| 292 ) | 292 ) |
| 293 | 293 |
| 294 yield ( | 294 yield ( |
| 295 api.test('chromeos_analyze') + | 295 api.test('chromeos_analyze') + |
| 296 api.platform.name('linux') + | 296 api.platform.name('linux') + |
| 297 props(mastername='tryserver.chromium.linux', | 297 props(mastername='tryserver.chromium.linux', |
| 298 buildername='chromeos_amd64-generic_chromium_compile_only_ng') | 298 buildername='chromeos_amd64-generic_chromium_compile_only_ng') |
| 299 ) | 299 ) |
| 300 | 300 |
| 301 # Additional tests for blink trybots. | 301 # Additional tests for blink trybots. |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 888 props(mastername='tryserver.v8', | 888 props(mastername='tryserver.v8', |
| 889 buildername='v8_linux_blink_rel', | 889 buildername='v8_linux_blink_rel', |
| 890 patch_project='v8') + | 890 patch_project='v8') + |
| 891 api.platform.name('linux') + | 891 api.platform.name('linux') + |
| 892 suppress_analyze(more_exclusions=['v8/f.*']) + | 892 suppress_analyze(more_exclusions=['v8/f.*']) + |
| 893 api.override_step_data('webkit_tests (with patch)', | 893 api.override_step_data('webkit_tests (with patch)', |
| 894 api.test_utils.canned_test_output(passing=False)) + | 894 api.test_utils.canned_test_output(passing=False)) + |
| 895 api.override_step_data('webkit_tests (without patch)', | 895 api.override_step_data('webkit_tests (without patch)', |
| 896 api.test_utils.canned_test_output(passing=True, minimal=True)) | 896 api.test_utils.canned_test_output(passing=True, minimal=True)) |
| 897 ) | 897 ) |
| OLD | NEW |