| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 # Android bots need custom dimension_sets entries for swarming, and capacity | 53 # Android bots need custom dimension_sets entries for swarming, and capacity |
| 54 # is not there yet -- so don't let manage.py add swarming automatically there. | 54 # is not there yet -- so don't let manage.py add swarming automatically there. |
| 55 'Android User Builder Tests', | 55 'Android User Builder Tests', |
| 56 'Android GN', | 56 'Android GN', |
| 57 'Android Tests', | 57 'Android Tests', |
| 58 'Android Tests (dbg)', | 58 'Android Tests (dbg)', |
| 59 | 59 |
| 60 # http://crbug.com/441429 | 60 # http://crbug.com/441429 |
| 61 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', | 61 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', |
| 62 | 62 |
| 63 # swarming may not work on Mac10.10 and 10.11, need to | 63 # Swarming may not work on Mac10.10,11,12; need to |
| 64 # re-investigate and confirm | 64 # re-investigate and confirm. |
| 65 'WebKit Mac10.10', | 65 'WebKit Mac10.10', |
| 66 'WebKit Mac10.11', | 66 'WebKit Mac10.11', |
| 67 'WebKit Mac10.12', |
| 67 'WebKit Mac10.11 (dbg)', | 68 'WebKit Mac10.11 (dbg)', |
| 68 'WebKit Mac10.11 (retina)', | 69 'WebKit Mac10.11 (retina)', |
| 69 'Chromium Mac10.10 Tests', | 70 'Chromium Mac10.10 Tests', |
| 70 'Chromium Mac10.11 Tests', | 71 'Chromium Mac10.11 Tests', |
| 71 'Mac GN', | 72 'Mac GN', |
| 72 'Mac GN (dbg)', | 73 'Mac GN (dbg)', |
| 73 | 74 |
| 74 # The memory.fyi waterfall is in the process of being converted to recipes, | 75 # The memory.fyi waterfall is in the process of being converted to recipes, |
| 75 # and swarming doesn't work yet. | 76 # and swarming doesn't work yet. |
| 76 'Chromium Mac (valgrind)(1)', | 77 'Chromium Mac (valgrind)(1)', |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 elif args.mode == 'remaining': | 488 elif args.mode == 'remaining': |
| 488 print_remaining(args.test_name, tests_location) | 489 print_remaining(args.test_name, tests_location) |
| 489 return result | 490 return result |
| 490 except Error as e: | 491 except Error as e: |
| 491 sys.stderr.write('%s\n' % e) | 492 sys.stderr.write('%s\n' % e) |
| 492 return 1 | 493 return 1 |
| 493 | 494 |
| 494 | 495 |
| 495 if __name__ == "__main__": | 496 if __name__ == "__main__": |
| 496 sys.exit(main()) | 497 sys.exit(main()) |
| OLD | NEW |