Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: tools/tests/factory_configuration/factory_configuration_test.py

Issue 14081044: Add Validation for BuildFactory Configuration (Closed) Base URL: http://skia.googlecode.com/svn/buildbot/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/tests/factory_configuration/expected/Skia_iOS_Compile_Release_32_Trybot ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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()
OLDNEW
« no previous file with comments | « tools/tests/factory_configuration/expected/Skia_iOS_Compile_Release_32_Trybot ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698