| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 | 29 |
| 30 SKIP = { | 30 SKIP = { |
| 31 # These are not 'builders'. | 31 # These are not 'builders'. |
| 32 'compile_targets', 'gtest_tests', 'filter_compile_builders', | 32 'compile_targets', 'gtest_tests', 'filter_compile_builders', |
| 33 'non_filter_builders', 'non_filter_tests_builders', | 33 'non_filter_builders', 'non_filter_tests_builders', |
| 34 | 34 |
| 35 # These are not supported on Swarming yet. | 35 # These are not supported on Swarming yet. |
| 36 # http://crbug.com/472205 | 36 # http://crbug.com/472205 |
| 37 'Chromium Mac 10.10', | 37 'Chromium Mac 10.10', |
| 38 'Chromium Mac 10.11', |
| 39 |
| 38 # http://crbug.com/441429 | 40 # http://crbug.com/441429 |
| 39 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', | 41 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', |
| 40 | 42 |
| 41 # http://crbug.com/480053 | 43 # http://crbug.com/480053 |
| 42 'Linux GN', | 44 'Linux GN', |
| 43 'Linux GN (dbg)', | 45 'Linux GN (dbg)', |
| 44 | 46 |
| 45 # Unmaintained builders on chromium.fyi | |
| 46 'ClangToTMac', | |
| 47 'ClangToTMacASan', | |
| 48 | |
| 49 # This builder is fine, but win8_chromium_ng uses GN and this configuration, | 47 # This builder is fine, but win8_chromium_ng uses GN and this configuration, |
| 50 # which breaks everything. | 48 # which breaks everything. |
| 51 'Win8 Aura', | 49 'Win8 Aura', |
| 52 | 50 |
| 53 # One off builders. Note that Swarming does support ARM. | 51 # One off builders. Note that Swarming does support ARM. |
| 54 'Linux ARM Cross-Compile', | 52 'Linux ARM Cross-Compile', |
| 55 'Site Isolation Linux', | 53 'Site Isolation Linux', |
| 56 'Site Isolation Win', | 54 'Site Isolation Win', |
| 57 } | 55 } |
| 58 | 56 |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 elif args.mode == 'remaining': | 311 elif args.mode == 'remaining': |
| 314 print_remaining(args.test_name, tests_location) | 312 print_remaining(args.test_name, tests_location) |
| 315 return result | 313 return result |
| 316 except Error as e: | 314 except Error as e: |
| 317 sys.stderr.write('%s\n' % e) | 315 sys.stderr.write('%s\n' % e) |
| 318 return 1 | 316 return 1 |
| 319 | 317 |
| 320 | 318 |
| 321 if __name__ == "__main__": | 319 if __name__ == "__main__": |
| 322 sys.exit(main()) | 320 sys.exit(main()) |
| OLD | NEW |