| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 'ios_chrome_unittests', | 162 'ios_chrome_unittests', |
| 163 'ios_chrome_web_egtests', | 163 'ios_chrome_web_egtests', |
| 164 'ios_net_unittests', | 164 'ios_net_unittests', |
| 165 'ios_showcase_egtests', | 165 'ios_showcase_egtests', |
| 166 'ios_web_inttests', | 166 'ios_web_inttests', |
| 167 'ios_web_shell_egtests', | 167 'ios_web_shell_egtests', |
| 168 'ios_web_unittests', | 168 'ios_web_unittests', |
| 169 | 169 |
| 170 # These are listed in Builders that are skipped for other reasons. | 170 # These are listed in Builders that are skipped for other reasons. |
| 171 'chrome_junit_tests', | 171 'chrome_junit_tests', |
| 172 'components_background_task_scheduler_junit_tests', |
| 172 'components_gcm_driver_junit_tests', | 173 'components_gcm_driver_junit_tests', |
| 173 'components_invalidation_impl_junit_tests', | 174 'components_invalidation_impl_junit_tests', |
| 174 'components_policy_junit_tests', | 175 'components_policy_junit_tests', |
| 175 'components_variations_junit_tests', | 176 'components_variations_junit_tests', |
| 176 'components_web_restrictions_junit_tests', | 177 'components_web_restrictions_junit_tests', |
| 177 'content_junit_tests', | 178 'content_junit_tests', |
| 178 'content_junit_tests', | 179 'content_junit_tests', |
| 179 'junit_unit_tests', | 180 'junit_unit_tests', |
| 180 'media_router_perf_tests', | 181 'media_router_perf_tests', |
| 181 'media_router_tests', | 182 'media_router_tests', |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 elif args.mode == 'remaining': | 491 elif args.mode == 'remaining': |
| 491 print_remaining(args.test_name, tests_location) | 492 print_remaining(args.test_name, tests_location) |
| 492 return result | 493 return result |
| 493 except Error as e: | 494 except Error as e: |
| 494 sys.stderr.write('%s\n' % e) | 495 sys.stderr.write('%s\n' % e) |
| 495 return 1 | 496 return 1 |
| 496 | 497 |
| 497 | 498 |
| 498 if __name__ == "__main__": | 499 if __name__ == "__main__": |
| 499 sys.exit(main()) | 500 sys.exit(main()) |
| OLD | NEW |