| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 'master.tryserver.chromium.linux': 'TryServerChromiumLinux', | 279 'master.tryserver.chromium.linux': 'TryServerChromiumLinux', |
| 280 'master.tryserver.chromium.mac': 'TryServerChromiumMac', | 280 'master.tryserver.chromium.mac': 'TryServerChromiumMac', |
| 281 'master.tryserver.chromium.win': 'TryServerChromiumWin', | 281 'master.tryserver.chromium.win': 'TryServerChromiumWin', |
| 282 'master.tryserver.chromium.perf': 'ChromiumPerfTryServer', | 282 'master.tryserver.chromium.perf': 'ChromiumPerfTryServer', |
| 283 'master.tryserver.client.catapult': 'CatapultTryserver', | 283 'master.tryserver.client.catapult': 'CatapultTryserver', |
| 284 'master.tryserver.client.custom_tabs_client': 'CustomTabsClientTryserver', | 284 'master.tryserver.client.custom_tabs_client': 'CustomTabsClientTryserver', |
| 285 'master.tryserver.client.mojo': 'MojoTryServer', | 285 'master.tryserver.client.mojo': 'MojoTryServer', |
| 286 'master.tryserver.client.pdfium': 'PDFiumTryserver', | 286 'master.tryserver.client.pdfium': 'PDFiumTryserver', |
| 287 'master.tryserver.client.syzygy': 'SyzygyTryserver', | 287 'master.tryserver.client.syzygy': 'SyzygyTryserver', |
| 288 'master.tryserver.blink': 'BlinkTryServer', | 288 'master.tryserver.blink': 'BlinkTryServer', |
| 289 'master.tryserver.infra': 'InfraTryServer', | |
| 290 'master.tryserver.libyuv': 'LibyuvTryServer', | 289 'master.tryserver.libyuv': 'LibyuvTryServer', |
| 291 'master.tryserver.nacl': 'NativeClientTryServer', | 290 'master.tryserver.nacl': 'NativeClientTryServer', |
| 292 'master.tryserver.v8': 'V8TryServer', | 291 'master.tryserver.v8': 'V8TryServer', |
| 293 'master.tryserver.webrtc': 'WebRTCTryServer', | 292 'master.tryserver.webrtc': 'WebRTCTryServer', |
| 294 } | 293 } |
| 295 all_masters = {base_dir: public_masters} | 294 all_masters = {base_dir: public_masters} |
| 296 if os.path.exists(build_internal): | 295 if os.path.exists(build_internal): |
| 297 internal_test_data = chromium_utils.ParsePythonCfg( | 296 internal_test_data = chromium_utils.ParsePythonCfg( |
| 298 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'), | 297 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'), |
| 299 fail_hard=True) | 298 fail_hard=True) |
| 300 all_masters[build_internal] = internal_test_data['masters_test'] | 299 all_masters[build_internal] = internal_test_data['masters_test'] |
| 301 return real_main(all_masters) | 300 return real_main(all_masters) |
| 302 | 301 |
| 303 | 302 |
| 304 if __name__ == '__main__': | 303 if __name__ == '__main__': |
| 305 sys.exit(main(sys.argv)) | 304 sys.exit(main(sys.argv)) |
| OLD | NEW |