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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
412 build_url=dbg_aura_archive, | 412 build_url=dbg_aura_archive, |
413 tests=['browser_tests', | 413 tests=['browser_tests', |
414 'interactive_ui', | 414 'interactive_ui', |
415 ], | 415 ], |
416 factory_properties={'process_dumps': True, | 416 factory_properties={'process_dumps': True, |
417 'sharded_tests': sharded_tests, | 417 'sharded_tests': sharded_tests, |
418 'browser_total_shards': 3, 'browser_shard_index': 3, | 418 'browser_total_shards': 3, 'browser_shard_index': 3, |
419 'start_crash_handler': True, | 419 'start_crash_handler': True, |
420 'generate_gtest_json': True})) | 420 'generate_gtest_json': True})) |
421 | 421 |
422 B('Win8 Ash', 'dbg_aura_win8', 'testers|windows', | |
Peter Mayo
2013/01/09 17:50:20
Won't it be easier to keep straight if the display
scottmg
2013/01/09 18:12:40
Done.
| |
423 'win_dbg_aura_trigger', notify_on_missing=True) | |
424 F('dbg_aura_win8', win_tester().ChromiumFactory( | |
425 target='Debug', | |
426 slave_type='Tester', | |
427 build_url=dbg_aura_archive, | |
428 tests=['ash_unittests', | |
429 'aura', | |
430 'compositor', | |
431 'view', | |
432 ], | |
433 factory_properties={'process_dumps': True, | |
434 'sharded_tests': sharded_tests, | |
435 'start_crash_handler': True, | |
436 'generate_gtest_json': True})) | |
437 | |
422 def Update(config, active_master, c): | 438 def Update(config, active_master, c): |
423 return helper.Update(c) | 439 return helper.Update(c) |
OLD | NEW |