OLD | NEW |
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 Loading... |
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()) |
OLD | NEW |