OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 master import master_config | 5 from master import master_config |
6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
7 | 7 |
8 defaults = {} | 8 defaults = {} |
9 | 9 |
10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 'start_crash_handler': True, | 113 'start_crash_handler': True, |
114 'generate_gtest_json': True})) | 114 'generate_gtest_json': True})) |
115 | 115 |
116 B('XP Tests (3)', 'rel_unit_3', 'testers|windows', 'win_rel_trigger', | 116 B('XP Tests (3)', 'rel_unit_3', 'testers|windows', 'win_rel_trigger', |
117 notify_on_missing=True) | 117 notify_on_missing=True) |
118 F('rel_unit_3', win_tester().ChromiumFactory( | 118 F('rel_unit_3', win_tester().ChromiumFactory( |
119 slave_type='Tester', | 119 slave_type='Tester', |
120 build_url=rel_archive, | 120 build_url=rel_archive, |
121 tests=[ | 121 tests=[ |
122 'browser_tests', | 122 'browser_tests', |
| 123 'components_unittests', |
123 'unit', | 124 'unit', |
124 ], | 125 ], |
125 factory_properties={'process_dumps': True, | 126 factory_properties={'process_dumps': True, |
126 'sharded_tests': sharded_tests, | 127 'sharded_tests': sharded_tests, |
127 'browser_total_shards': 3, 'browser_shard_index': 3, | 128 'browser_total_shards': 3, 'browser_shard_index': 3, |
128 'start_crash_handler': True, | 129 'start_crash_handler': True, |
129 'generate_gtest_json': True})) | 130 'generate_gtest_json': True})) |
130 | 131 |
131 B('Vista Tests (1)', 'rel_unit_1', 'testers|windows', 'win_rel_trigger', | 132 B('Vista Tests (1)', 'rel_unit_1', 'testers|windows', 'win_rel_trigger', |
132 notify_on_missing=True) | 133 notify_on_missing=True) |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 F('dbg_unit_1', win_tester().ChromiumFactory( | 226 F('dbg_unit_1', win_tester().ChromiumFactory( |
226 target='Debug', | 227 target='Debug', |
227 slave_type='Tester', | 228 slave_type='Tester', |
228 build_url=dbg_archive, | 229 build_url=dbg_archive, |
229 tests=[ | 230 tests=[ |
230 'base', | 231 'base', |
231 'cacheinvalidation', | 232 'cacheinvalidation', |
232 'cc_unittests', | 233 'cc_unittests', |
233 'chromedriver2_unittests', | 234 'chromedriver2_unittests', |
234 'check_deps', | 235 'check_deps', |
| 236 'components_unittests', |
235 'courgette', | 237 'courgette', |
236 'crypto', | 238 'crypto', |
237 'googleurl', | 239 'googleurl', |
238 'gpu', | 240 'gpu', |
239 'installer', | 241 'installer', |
240 'jingle', | 242 'jingle', |
241 'media', | 243 'media', |
242 'ppapi_unittests', | 244 'ppapi_unittests', |
243 'printing', | 245 'printing', |
244 'remoting', | 246 'remoting', |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 'aura', | 431 'aura', |
430 'compositor', | 432 'compositor', |
431 'views_unittests', | 433 'views_unittests', |
432 ], | 434 ], |
433 factory_properties={'process_dumps': True, | 435 factory_properties={'process_dumps': True, |
434 'start_crash_handler': True, | 436 'start_crash_handler': True, |
435 'generate_gtest_json': True})) | 437 'generate_gtest_json': True})) |
436 | 438 |
437 def Update(config, active_master, c): | 439 def Update(config, active_master, c): |
438 return helper.Update(c) | 440 return helper.Update(c) |
OLD | NEW |