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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/tests/factory_configuration/factory_configuration_test.py
===================================================================
--- tools/tests/factory_configuration/factory_configuration_test.py (revision 0)
+++ tools/tests/factory_configuration/factory_configuration_test.py (revision 0)
@@ -0,0 +1,30 @@
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+""" Verifies that the configuration for each BuildFactory matches its
+expectation. """
+
+
+import os
+import sys
+
+sys.path.append('master')
+sys.path.append('site_config')
+sys.path.append(os.path.join('third_party', 'chromium_buildbot', 'scripts'))
+sys.path.append(os.path.join('third_party', 'chromium_buildbot', 'site_config'))
+sys.path.append(os.path.join('third_party', 'chromium_buildbot', 'third_party',
+ 'buildbot_8_4p1'))
+
+import config
+import master_builders_cfg
+
+def main():
+ c = {}
+ c['schedulers'] = []
+ c['builders'] = []
+ master_builders_cfg.Update(config, config.Master.Skia, c)
+
+
+if '__main__' == __name__:
+ main()
« 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