| OLD | NEW |
| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 'master.client.nacl.sdk.addin': 'NativeClientSDKAddIn', | 233 'master.client.nacl.sdk.addin': 'NativeClientSDKAddIn', |
| 234 'master.client.nacl.sdk.mono': 'NativeClientSDKMono', | 234 'master.client.nacl.sdk.mono': 'NativeClientSDKMono', |
| 235 'master.client.nacl.toolchain': 'NativeClientToolchain', | 235 'master.client.nacl.toolchain': 'NativeClientToolchain', |
| 236 'master.client.pagespeed': 'PageSpeed', | 236 'master.client.pagespeed': 'PageSpeed', |
| 237 'master.client.polymer': 'Polymer', | 237 'master.client.polymer': 'Polymer', |
| 238 'master.client.sfntly': 'Sfntly', | 238 'master.client.sfntly': 'Sfntly', |
| 239 'master.client.skia': None, # buildbot files live in Skia repo | 239 'master.client.skia': None, # buildbot files live in Skia repo |
| 240 'master.client.syzygy': 'Syzygy', | 240 'master.client.syzygy': 'Syzygy', |
| 241 'master.client.v8': 'V8', | 241 'master.client.v8': 'V8', |
| 242 'master.client.webrtc': 'WebRTC', | 242 'master.client.webrtc': 'WebRTC', |
| 243 'master.client.webrtc.fyi': 'WebRTCFYI', |
| 243 'master.devtools': 'DevTools', | 244 'master.devtools': 'DevTools', |
| 244 'master.experimental': 'Experimental', | 245 'master.experimental': 'Experimental', |
| 245 'master.tryserver.chromium': 'TryServer', | 246 'master.tryserver.chromium': 'TryServer', |
| 246 'master.tryserver.libyuv': 'LibyuvTryServer', | 247 'master.tryserver.libyuv': 'LibyuvTryServer', |
| 247 'master.tryserver.nacl': 'NativeClientTryServer', | 248 'master.tryserver.nacl': 'NativeClientTryServer', |
| 248 'master.tryserver.webrtc': 'WebRTCTryServer', | 249 'master.tryserver.webrtc': 'WebRTCTryServer', |
| 249 } | 250 } |
| 250 all_masters = { base_dir: public_masters } | 251 all_masters = { base_dir: public_masters } |
| 251 if os.path.exists(build_internal): | 252 if os.path.exists(build_internal): |
| 252 internal_test_data = chromium_utils.ParsePythonCfg(os.path.join( | 253 internal_test_data = chromium_utils.ParsePythonCfg(os.path.join( |
| 253 build_internal, 'tests', 'internal_masters_cfg.py')) | 254 build_internal, 'tests', 'internal_masters_cfg.py')) |
| 254 all_masters[build_internal] = internal_test_data['masters_test'] | 255 all_masters[build_internal] = internal_test_data['masters_test'] |
| 255 return real_main(all_masters) | 256 return real_main(all_masters) |
| 256 | 257 |
| 257 | 258 |
| 258 if __name__ == '__main__': | 259 if __name__ == '__main__': |
| 259 sys.exit(main(sys.argv)) | 260 sys.exit(main(sys.argv)) |
| OLD | NEW |