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

Side by Side Diff: test/masters_test.py

Issue 8305010: Add ChromiumOS Trybot support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: '' Created 9 years, 2 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 | « site_config/config_default.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 (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 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 from __future__ import with_statement 9 from __future__ import with_statement
10 import logging 10 import logging
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 'master.client.sfntly': None, 217 'master.client.sfntly': None,
218 'master.client.skia': None, 218 'master.client.skia': None,
219 'master.client.syzygy': None, 219 'master.client.syzygy': None,
220 'master.client.tsan': None, # make start fails 220 'master.client.tsan': None, # make start fails
221 'master.client.v8': 'V8', 221 'master.client.v8': 'V8',
222 'master.client.webm': 'WebM', 222 'master.client.webm': 'WebM',
223 'master.experimental': None, 223 'master.experimental': None,
224 'master.reserved': None, # make start fails 224 'master.reserved': None, # make start fails
225 'master.tryserver.chromium': 'Chromium Try Server', 225 'master.tryserver.chromium': 'Chromium Try Server',
226 'master.tryserver.nacl': 'NativeClient-Try', 226 'master.tryserver.nacl': 'NativeClient-Try',
227 'master.tryserver.chromiumos': 'ChromiumOS Try Server',
227 } 228 }
228 return real_main(base_dir, expected) 229 return real_main(base_dir, expected)
229 230
230 231
231 if __name__ == '__main__': 232 if __name__ == '__main__':
232 sys.exit(main()) 233 sys.exit(main())
OLDNEW
« no previous file with comments | « site_config/config_default.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698