| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 'ios_web_inttests', | 153 'ios_web_inttests', |
| 154 'ios_web_unittests', | 154 'ios_web_unittests', |
| 155 'mini_installer', | 155 'mini_installer', |
| 156 'next_version_mini_installer', | 156 'next_version_mini_installer', |
| 157 | 157 |
| 158 # this is used at least on iOS | 158 # this is used at least on iOS |
| 159 'cronet_test', | 159 'cronet_test', |
| 160 | 160 |
| 161 # These are listed in Builders that are skipped for other reasons. | 161 # These are listed in Builders that are skipped for other reasons. |
| 162 'chrome_junit_tests', | 162 'chrome_junit_tests', |
| 163 'components_gcm_driver_junit_tests', |
| 163 'components_invalidation_impl_junit_tests', | 164 'components_invalidation_impl_junit_tests', |
| 164 'components_policy_junit_tests', | 165 'components_policy_junit_tests', |
| 165 'components_variations_junit_tests', | 166 'components_variations_junit_tests', |
| 166 'components_web_restrictions_junit_tests', | 167 'components_web_restrictions_junit_tests', |
| 167 'content_junit_tests', | 168 'content_junit_tests', |
| 168 'content_junit_tests', | 169 'content_junit_tests', |
| 169 'junit_unit_tests', | 170 'junit_unit_tests', |
| 170 'media_router_perf_tests', | 171 'media_router_perf_tests', |
| 171 'media_router_tests', | 172 'media_router_tests', |
| 172 'net_junit_tests', | 173 'net_junit_tests', |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 elif args.mode == 'remaining': | 480 elif args.mode == 'remaining': |
| 480 print_remaining(args.test_name, tests_location) | 481 print_remaining(args.test_name, tests_location) |
| 481 return result | 482 return result |
| 482 except Error as e: | 483 except Error as e: |
| 483 sys.stderr.write('%s\n' % e) | 484 sys.stderr.write('%s\n' % e) |
| 484 return 1 | 485 return 1 |
| 485 | 486 |
| 486 | 487 |
| 487 if __name__ == "__main__": | 488 if __name__ == "__main__": |
| 488 sys.exit(main()) | 489 sys.exit(main()) |
| OLD | NEW |