| OLD | NEW |
| 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 collections | 9 import collections |
| 10 import contextlib | 10 import contextlib |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 'master.client.nacl.chrome': 'NativeClientChrome', | 231 'master.client.nacl.chrome': 'NativeClientChrome', |
| 232 'master.client.nacl.llvm': 'NativeClientLLVM', | 232 'master.client.nacl.llvm': 'NativeClientLLVM', |
| 233 'master.client.nacl.ports': 'NativeClientPorts', | 233 'master.client.nacl.ports': 'NativeClientPorts', |
| 234 'master.client.nacl.ragel': 'NativeClientRagel', | 234 'master.client.nacl.ragel': 'NativeClientRagel', |
| 235 'master.client.nacl.sdk': 'NativeClientSDK', | 235 'master.client.nacl.sdk': 'NativeClientSDK', |
| 236 'master.client.nacl.sdk.addin': 'NativeClientSDKAddIn', | 236 'master.client.nacl.sdk.addin': 'NativeClientSDKAddIn', |
| 237 'master.client.nacl.sdk.mono': 'NativeClientSDKMono', | 237 'master.client.nacl.sdk.mono': 'NativeClientSDKMono', |
| 238 'master.client.nacl.toolchain': 'NativeClientToolchain', | 238 'master.client.nacl.toolchain': 'NativeClientToolchain', |
| 239 'master.client.omaha': 'Omaha', | 239 'master.client.omaha': 'Omaha', |
| 240 'master.client.pagespeed': 'PageSpeed', | 240 'master.client.pagespeed': 'PageSpeed', |
| 241 'master.client.sfntly': None, | 241 'master.client.sfntly': 'Sfntly', |
| 242 'master.client.skia': None, | 242 'master.client.skia': None, # buildbot files live in Skia repo |
| 243 'master.client.syzygy': None, | 243 'master.client.syzygy': 'Syzygy', |
| 244 'master.client.toolkit': None, | 244 'master.client.toolkit': 'Toolkit', |
| 245 'master.client.v8': 'V8', | 245 'master.client.v8': 'V8', |
| 246 'master.client.webrtc': 'WebRTC', | 246 'master.client.webrtc': 'WebRTC', |
| 247 'master.devtools': 'DevTools', | 247 'master.devtools': 'DevTools', |
| 248 'master.experimental': None, | 248 'master.experimental': 'Experimental', |
| 249 'master.tryserver.chromium': 'TryServer', | 249 'master.tryserver.chromium': 'TryServer', |
| 250 'master.tryserver.chromium.linux': 'TryServerLinux', | 250 'master.tryserver.chromium.linux': 'TryServerLinux', |
| 251 'master.tryserver.libyuv': 'LibyuvTryServer', | 251 'master.tryserver.libyuv': 'LibyuvTryServer', |
| 252 'master.tryserver.nacl': 'NativeClientTryServer', | 252 'master.tryserver.nacl': 'NativeClientTryServer', |
| 253 'master.tryserver.webrtc': 'WebRTCTryServer', | 253 'master.tryserver.webrtc': 'WebRTCTryServer', |
| 254 } | 254 } |
| 255 all_masters = { base_dir: public_masters } | 255 all_masters = { base_dir: public_masters } |
| 256 if os.path.exists(build_internal): | 256 if os.path.exists(build_internal): |
| 257 internal_test_data = chromium_utils.ParsePythonCfg(os.path.join( | 257 internal_test_data = chromium_utils.ParsePythonCfg(os.path.join( |
| 258 build_internal, 'test', 'internal_masters_cfg.py')) | 258 build_internal, 'test', 'internal_masters_cfg.py')) |
| 259 all_masters[build_internal] = internal_test_data['masters_test'] | 259 all_masters[build_internal] = internal_test_data['masters_test'] |
| 260 return real_main(all_masters) | 260 return real_main(all_masters) |
| 261 | 261 |
| 262 | 262 |
| 263 if __name__ == '__main__': | 263 if __name__ == '__main__': |
| 264 sys.exit(main(sys.argv)) | 264 sys.exit(main(sys.argv)) |
| OLD | NEW |