| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 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 """Toolbox to manage all the json files in this directory. | 6 """Toolbox to manage all the json files in this directory. |
| 7 | 7 |
| 8 It can reformat them in their canonical format or ensures they are well | 8 It can reformat them in their canonical format or ensures they are well |
| 9 formatted. | 9 formatted. |
| 10 """ | 10 """ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'non_filter_builders', 'non_filter_tests_builders', | 32 'non_filter_builders', 'non_filter_tests_builders', |
| 33 | 33 |
| 34 # These are not supported on Swarming yet. | 34 # These are not supported on Swarming yet. |
| 35 # http://crbug.com/472205 | 35 # http://crbug.com/472205 |
| 36 'Chromium Mac 10.10', | 36 'Chromium Mac 10.10', |
| 37 # http://crbug.com/441429 | 37 # http://crbug.com/441429 |
| 38 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', | 38 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', |
| 39 | 39 |
| 40 # http://crbug.com/480053 | 40 # http://crbug.com/480053 |
| 41 'Linux GN', | 41 'Linux GN', |
| 42 'Linux GN (dbg)', |
| 42 'linux_chromium_gn_rel', | 43 'linux_chromium_gn_rel', |
| 43 | 44 |
| 44 # Unmaintained builders on chromium.fyi | 45 # Unmaintained builders on chromium.fyi |
| 45 'ClangToTMac', | 46 'ClangToTMac', |
| 46 'ClangToTMacASan', | 47 'ClangToTMacASan', |
| 47 | 48 |
| 48 # Clang builders want to build everything, the current hack is to use | 49 # Clang builders want to build everything, the current hack is to use |
| 49 # add_tests_as_compile_targets=False which interfere with isolated testing. | 50 # add_tests_as_compile_targets=False which interfere with isolated testing. |
| 50 # Blocked by http://crbug.com/503241. | 51 # Blocked by http://crbug.com/503241. |
| 51 'ClangToTLinux tester', | 52 'ClangToTLinux tester', |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 if args.mode == 'remaining': | 287 if args.mode == 'remaining': |
| 287 print_remaining(args.test_name, tests_location) | 288 print_remaining(args.test_name, tests_location) |
| 288 return result | 289 return result |
| 289 except Error as e: | 290 except Error as e: |
| 290 sys.stderr.write('%s\n' % e) | 291 sys.stderr.write('%s\n' % e) |
| 291 return 1 | 292 return 1 |
| 292 | 293 |
| 293 | 294 |
| 294 if __name__ == "__main__": | 295 if __name__ == "__main__": |
| 295 sys.exit(main()) | 296 sys.exit(main()) |
| OLD | NEW |