| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-win-archive', | 9 'build_gs_bucket': 'chromium-win-archive', |
| 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. | 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 'bot_type': 'builder', | 24 'bot_type': 'builder', |
| 25 'compile_targets': [ | 25 'compile_targets': [ |
| 26 'chromium_builder_tests', | 26 'chromium_builder_tests', |
| 27 ], | 27 ], |
| 28 'testing': { | 28 'testing': { |
| 29 'platform': 'win', | 29 'platform': 'win', |
| 30 }, | 30 }, |
| 31 'enable_swarming': True, | 31 'enable_swarming': True, |
| 32 'use_isolate': True, | 32 'use_isolate': True, |
| 33 }, | 33 }, |
| 34 'XP Tests (1)': { | |
| 35 'chromium_config': 'chromium', | |
| 36 'chromium_apply_config': ['ninja_confirm_noop'], | |
| 37 'gclient_config': 'chromium', | |
| 38 'chromium_config_kwargs': { | |
| 39 'BUILD_CONFIG': 'Release', | |
| 40 'TARGET_BITS': 32, | |
| 41 }, | |
| 42 'bot_type': 'tester', | |
| 43 'test_generators': [ | |
| 44 steps.generate_gtest, | |
| 45 steps.generate_script, | |
| 46 steps.generate_isolated_script, | |
| 47 ], | |
| 48 'parent_buildername': 'Win Builder', | |
| 49 'testing': { | |
| 50 'platform': 'win', | |
| 51 }, | |
| 52 'enable_swarming': True, | |
| 53 'swarming_dimensions': { | |
| 54 'cpu': 'x86-32', | |
| 55 'os': 'Windows-XP-SP3', | |
| 56 }, | |
| 57 }, | |
| 58 'Vista Tests (1)': { | |
| 59 'chromium_config': 'chromium', | |
| 60 'chromium_apply_config': ['ninja_confirm_noop'], | |
| 61 'gclient_config': 'chromium', | |
| 62 'chromium_config_kwargs': { | |
| 63 'BUILD_CONFIG': 'Release', | |
| 64 'TARGET_BITS': 32, | |
| 65 }, | |
| 66 'bot_type': 'tester', | |
| 67 'test_generators': [ | |
| 68 steps.generate_gtest, | |
| 69 steps.generate_script, | |
| 70 steps.generate_isolated_script, | |
| 71 ], | |
| 72 'parent_buildername': 'Win Builder', | |
| 73 'testing': { | |
| 74 'platform': 'win', | |
| 75 }, | |
| 76 'enable_swarming': True, | |
| 77 'swarming_dimensions': { | |
| 78 'os': 'Windows-Vista-SP2', | |
| 79 }, | |
| 80 }, | |
| 81 'Win7 (32) Tests': { | 34 'Win7 (32) Tests': { |
| 82 'chromium_config': 'chromium', | 35 'chromium_config': 'chromium', |
| 83 'chromium_apply_config': ['ninja_confirm_noop'], | 36 'chromium_apply_config': ['ninja_confirm_noop'], |
| 84 'gclient_config': 'chromium', | 37 'gclient_config': 'chromium', |
| 85 'chromium_config_kwargs': { | 38 'chromium_config_kwargs': { |
| 86 'BUILD_CONFIG': 'Release', | 39 'BUILD_CONFIG': 'Release', |
| 87 'TARGET_BITS': 32, | 40 'TARGET_BITS': 32, |
| 88 }, | 41 }, |
| 89 'bot_type': 'tester', | 42 'bot_type': 'tester', |
| 90 'test_generators': [ | 43 'test_generators': [ |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 steps.generate_script, | 245 steps.generate_script, |
| 293 steps.generate_isolated_script, | 246 steps.generate_isolated_script, |
| 294 ], | 247 ], |
| 295 'enable_swarming': True, | 248 'enable_swarming': True, |
| 296 'testing': { | 249 'testing': { |
| 297 'platform': 'win', | 250 'platform': 'win', |
| 298 }, | 251 }, |
| 299 }, | 252 }, |
| 300 }, | 253 }, |
| 301 } | 254 } |
| OLD | NEW |