| 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 buildbot import locks | 5 from buildbot import locks |
| 6 from buildbot.changes import svnpoller | 6 from buildbot.changes import svnpoller |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 tests=[ | 466 tests=[ |
| 467 'drmemory_full_googleurl', | 467 'drmemory_full_googleurl', |
| 468 'drmemory_full_printing', | 468 'drmemory_full_printing', |
| 469 'drmemory_full_media', | 469 'drmemory_full_media', |
| 470 'drmemory_full_sql', | 470 'drmemory_full_sql', |
| 471 'drmemory_full_crypto', | 471 'drmemory_full_crypto', |
| 472 'drmemory_full_remoting', | 472 'drmemory_full_remoting', |
| 473 'drmemory_full_ipc', | 473 'drmemory_full_ipc', |
| 474 'drmemory_full_base', | 474 'drmemory_full_base', |
| 475 'drmemory_full_net', | 475 'drmemory_full_net', |
| 476 # run tests in shards to decrease the number of reports per shard. | 476 # Full mode has a high memory overhead currently, so shard the tests |
| 477 'drmemory_full_unit_1_of_3', | 477 # more. |
| 478 'drmemory_full_unit_2_of_3', | 478 'drmemory_full_unit_1_of_6', |
| 479 'drmemory_full_unit_3_of_3', | 479 'drmemory_full_unit_2_of_6', |
| 480 'drmemory_full_unit_3_of_6', |
| 481 'drmemory_full_unit_4_of_6', |
| 482 'drmemory_full_unit_5_of_6', |
| 483 'drmemory_full_unit_6_of_6', |
| 480 ], | 484 ], |
| 481 factory_properties={'needs_drmemory': True}, | 485 factory_properties={'needs_drmemory': True}, |
| 482 ) | 486 ) |
| 483 | 487 |
| 484 f_cr_dbg_mac_106_tsan = mac().ChromiumFactory( | 488 f_cr_dbg_mac_106_tsan = mac().ChromiumFactory( |
| 485 target='Debug', | 489 target='Debug', |
| 486 tests=['tsan_base', | 490 tests=['tsan_base', |
| 487 'tsan_googleurl', | 491 'tsan_googleurl', |
| 488 'tsan_crypto', | 492 'tsan_crypto', |
| 489 'tsan_net', | 493 'tsan_net', |
| (...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1407 ], | 1411 ], |
| 1408 lookup=master_utils.FilterDomain(), | 1412 lookup=master_utils.FilterDomain(), |
| 1409 forgiving_steps=[], | 1413 forgiving_steps=[], |
| 1410 use_getname=True)) | 1414 use_getname=True)) |
| 1411 | 1415 |
| 1412 | 1416 |
| 1413 ####### PROJECT IDENTITY | 1417 ####### PROJECT IDENTITY |
| 1414 | 1418 |
| 1415 # Buildbot master url: | 1419 # Buildbot master url: |
| 1416 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 1420 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
| OLD | NEW |