OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 """ Verifies that the configuration for each BuildFactory matches its |
| 6 expectation. """ |
| 7 |
| 8 |
| 9 import os |
| 10 import sys |
| 11 |
| 12 sys.path.append('master') |
| 13 sys.path.append('site_config') |
| 14 sys.path.append(os.path.join('third_party', 'chromium_buildbot', 'scripts')) |
| 15 sys.path.append(os.path.join('third_party', 'chromium_buildbot', 'site_config')) |
| 16 sys.path.append(os.path.join('third_party', 'chromium_buildbot', 'third_party', |
| 17 'buildbot_8_4p1')) |
| 18 |
| 19 import config |
| 20 import master_builders_cfg |
| 21 |
| 22 def main(): |
| 23 c = {} |
| 24 c['schedulers'] = [] |
| 25 c['builders'] = [] |
| 26 master_builders_cfg.Update(config, config.Master.Skia, c) |
| 27 |
| 28 |
| 29 if '__main__' == __name__: |
| 30 main() |
OLD | NEW |