| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 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 # TODO(hinoka): Use logging. | 6 # TODO(hinoka): Use logging. |
| 7 | 7 |
| 8 import cStringIO | 8 import cStringIO |
| 9 import codecs | 9 import codecs |
| 10 import collections | 10 import collections |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 'chromium.fyi', | 243 'chromium.fyi', |
| 244 'chromium.goma', | 244 'chromium.goma', |
| 245 'chromium.gpu', | 245 'chromium.gpu', |
| 246 'chromium.gpu.fyi', | 246 'chromium.gpu.fyi', |
| 247 'chromium.infra', | 247 'chromium.infra', |
| 248 'chromium.infra.cron', | 248 'chromium.infra.cron', |
| 249 'chromium.linux', | 249 'chromium.linux', |
| 250 'chromium.lkgr', | 250 'chromium.lkgr', |
| 251 'chromium.mac', | 251 'chromium.mac', |
| 252 'chromium.memory', | 252 'chromium.memory', |
| 253 'chromium.memory.fyi', | 253 'chromium.memory.full', |
| 254 'chromium.perf', | 254 'chromium.perf', |
| 255 'chromium.perf.fyi', | 255 'chromium.perf.fyi', |
| 256 'chromium.swarm', | 256 'chromium.swarm', |
| 257 'chromium.webkit', | 257 'chromium.webkit', |
| 258 'chromium.webrtc', | 258 'chromium.webrtc', |
| 259 'chromium.webrtc.fyi', | 259 'chromium.webrtc.fyi', |
| 260 'chromium.win', | 260 'chromium.win', |
| 261 'client.catapult', | 261 'client.catapult', |
| 262 'client.drmemory', | 262 'client.drmemory', |
| 263 'client.mojo', | 263 'client.mojo', |
| (...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1738 except Exception: | 1738 except Exception: |
| 1739 # Unexpected failure. | 1739 # Unexpected failure. |
| 1740 emit_flag(options.flag_file) | 1740 emit_flag(options.flag_file) |
| 1741 raise | 1741 raise |
| 1742 else: | 1742 else: |
| 1743 emit_flag(options.flag_file) | 1743 emit_flag(options.flag_file) |
| 1744 | 1744 |
| 1745 | 1745 |
| 1746 if __name__ == '__main__': | 1746 if __name__ == '__main__': |
| 1747 sys.exit(main()) | 1747 sys.exit(main()) |
| OLD | NEW |