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

Side by Side Diff: test/masters_test.py

Issue 12033076: Add ChromiumWebRTC FYI waterfall (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Added master to test/masters_test.py Created 7 years, 10 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) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 logging 9 import logging
10 import optparse 10 import optparse
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'master.chromium.mac': 'ChromiumMac', 182 'master.chromium.mac': 'ChromiumMac',
183 'master.chromium.memory': 'ChromiumMemory', 183 'master.chromium.memory': 'ChromiumMemory',
184 'master.chromium.memory.fyi': 'ChromiumMemoryFYI', 184 'master.chromium.memory.fyi': 'ChromiumMemoryFYI',
185 'master.chromium.perf': 'ChromiumPerf', 185 'master.chromium.perf': 'ChromiumPerf',
186 'master.chromium.perf_av': 'ChromiumPerfAv', 186 'master.chromium.perf_av': 'ChromiumPerfAv',
187 'master.chromium.pyauto': 'ChromiumPyauto', 187 'master.chromium.pyauto': 'ChromiumPyauto',
188 'master.chromium.swarm': 'ChromiumSwarm', 188 'master.chromium.swarm': 'ChromiumSwarm',
189 'master.chromium.unused': None, 189 'master.chromium.unused': None,
190 'master.chromium.webkit': 'ChromiumWebkit', 190 'master.chromium.webkit': 'ChromiumWebkit',
191 'master.chromium.webrtc': 'ChromiumWebRTC', 191 'master.chromium.webrtc': 'ChromiumWebRTC',
192 'master.chromium.webrtc.fyi': 'ChromiumWebRTCFYI',
192 'master.chromium.win': 'ChromiumWin', 193 'master.chromium.win': 'ChromiumWin',
193 'master.chromiumos': 'ChromiumOS', 194 'master.chromiumos': 'ChromiumOS',
194 'master.chromiumos.tryserver': None, 195 'master.chromiumos.tryserver': None,
195 'master.chromiumos.unused': None, 196 'master.chromiumos.unused': None,
196 'master.client.drmemory': 'DrMemory', 197 'master.client.drmemory': 'DrMemory',
197 'master.client.dynamorio': 'DynamoRIO', 198 'master.client.dynamorio': 'DynamoRIO',
198 'master.client.dart': 'Dart', 199 'master.client.dart': 'Dart',
199 'master.client.dart.fyi': 'DartFYI', 200 'master.client.dart.fyi': 'DartFYI',
200 'master.client.libjingle': 'Libjingle', 201 'master.client.libjingle': 'Libjingle',
201 'master.client.libyuv': 'Libyuv', 202 'master.client.libyuv': 'Libyuv',
(...skipping 21 matching lines...) Expand all
223 'master.tryserver.nacl': 'NativeClientTryServer', 224 'master.tryserver.nacl': 'NativeClientTryServer',
224 'master.tryserver.unused': None, 225 'master.tryserver.unused': None,
225 'master.devtools': 'DevTools', 226 'master.devtools': 'DevTools',
226 'master.webkit': None, 227 'master.webkit': None,
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