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 22 matching lines...) Expand all Loading... |
33 'linux') | 33 'linux') |
34 | 34 |
35 # Tests that are single-machine shard-safe. | 35 # Tests that are single-machine shard-safe. |
36 sharded_tests = [ | 36 sharded_tests = [ |
37 'aura_unittests', | 37 'aura_unittests', |
38 'base_unittests', | 38 'base_unittests', |
39 'browser_tests', | 39 'browser_tests', |
40 'cacheinvalidation_unittests', | 40 'cacheinvalidation_unittests', |
41 'cc_unittests', | 41 'cc_unittests', |
42 'chromedriver_tests', | 42 'chromedriver_tests', |
| 43 'chromedriver_unittests', |
43 'chromedriver2_unittests', | 44 'chromedriver2_unittests', |
44 'components_unittests', | 45 'components_unittests', |
45 'content_browsertests', | 46 'content_browsertests', |
46 'content_unittests', | 47 'content_unittests', |
47 'crypto_unittests', | 48 'crypto_unittests', |
48 'device_unittests', | 49 'device_unittests', |
49 'gpu_unittests', | 50 'gpu_unittests', |
50 'jingle_unittests', | 51 'jingle_unittests', |
51 'media_unittests', | 52 'media_unittests', |
52 'net_unittests', | 53 'net_unittests', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 'asan': True, | 172 'asan': True, |
172 'cluster_size': 1, | 173 'cluster_size': 1, |
173 'browser_total_shards': 3, | 174 'browser_total_shards': 3, |
174 'browser_shard_index': 3, | 175 'browser_shard_index': 3, |
175 'lsan': True, | 176 'lsan': True, |
176 'sharded_tests': sharded_tests, | 177 'sharded_tests': sharded_tests, |
177 })) | 178 })) |
178 | 179 |
179 def Update(config, active_master, c): | 180 def Update(config, active_master, c): |
180 return helper.Update(c) | 181 return helper.Update(c) |
OLD | NEW |