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

Side by Side Diff: tests/masters_test.py

Issue 782043003: Add a new chromium.mojo master (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge to r293409 Created 6 years 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 | « masters/master.chromium.mojo/master_site_config.py ('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
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Starts all masters and verify they can server /json/project fine. 6 """Starts all masters and verify they can server /json/project fine.
7 """ 7 """
8 8
9 import collections 9 import collections
10 import contextlib 10 import contextlib
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'master.chromium.chromiumos': 'ChromiumChromiumOS', 206 'master.chromium.chromiumos': 'ChromiumChromiumOS',
207 'master.chromium.fyi': 'ChromiumFYI', 207 'master.chromium.fyi': 'ChromiumFYI',
208 'master.chromium.gatekeeper': 'Gatekeeper', 208 'master.chromium.gatekeeper': 'Gatekeeper',
209 'master.chromium.gpu': 'ChromiumGPU', 209 'master.chromium.gpu': 'ChromiumGPU',
210 'master.chromium.gpu.fyi': 'ChromiumGPUFYI', 210 'master.chromium.gpu.fyi': 'ChromiumGPUFYI',
211 'master.chromium.linux': 'ChromiumLinux', 211 'master.chromium.linux': 'ChromiumLinux',
212 'master.chromium.lkgr': 'ChromiumLKGR', 212 'master.chromium.lkgr': 'ChromiumLKGR',
213 'master.chromium.mac': 'ChromiumMac', 213 'master.chromium.mac': 'ChromiumMac',
214 'master.chromium.memory': 'ChromiumMemory', 214 'master.chromium.memory': 'ChromiumMemory',
215 'master.chromium.memory.fyi': 'ChromiumMemoryFYI', 215 'master.chromium.memory.fyi': 'ChromiumMemoryFYI',
216 'master.chromium.mojo': 'ChromiumMojo',
216 'master.chromium.perf': 'ChromiumPerf', 217 'master.chromium.perf': 'ChromiumPerf',
217 'master.chromium.perf.fyi': 'ChromiumPerfFyi', 218 'master.chromium.perf.fyi': 'ChromiumPerfFyi',
218 'master.chromium.swarm': 'ChromiumSwarm', 219 'master.chromium.swarm': 'ChromiumSwarm',
219 'master.chromium.webkit': 'ChromiumWebkit', 220 'master.chromium.webkit': 'ChromiumWebkit',
220 'master.chromium.webrtc': 'ChromiumWebRTC', 221 'master.chromium.webrtc': 'ChromiumWebRTC',
221 'master.chromium.webrtc.fyi': 'ChromiumWebRTCFYI', 222 'master.chromium.webrtc.fyi': 'ChromiumWebRTCFYI',
222 'master.chromium.win': 'ChromiumWin', 223 'master.chromium.win': 'ChromiumWin',
223 'master.chromiumos': 'ChromiumOS', 224 'master.chromiumos': 'ChromiumOS',
224 'master.chromiumos.chromium': 'ChromiumOSChromium', 225 'master.chromiumos.chromium': 'ChromiumOSChromium',
225 'master.chromiumos.tryserver': 'ChromiumOSTryServer', 226 'master.chromiumos.tryserver': 'ChromiumOSTryServer',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 if os.path.exists(build_internal): 272 if os.path.exists(build_internal):
272 internal_test_data = chromium_utils.ParsePythonCfg( 273 internal_test_data = chromium_utils.ParsePythonCfg(
273 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'), 274 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'),
274 fail_hard=True) 275 fail_hard=True)
275 all_masters[build_internal] = internal_test_data['masters_test'] 276 all_masters[build_internal] = internal_test_data['masters_test']
276 return real_main(all_masters) 277 return real_main(all_masters)
277 278
278 279
279 if __name__ == '__main__': 280 if __name__ == '__main__':
280 sys.exit(main(sys.argv)) 281 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « masters/master.chromium.mojo/master_site_config.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698