| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 'cronet_test', | 160 'cronet_test', |
| 161 | 161 |
| 162 # These are listed in Builders that are skipped for other reasons. | 162 # These are listed in Builders that are skipped for other reasons. |
| 163 'chrome_junit_tests', | 163 'chrome_junit_tests', |
| 164 'components_invalidation_impl_junit_tests', | 164 'components_invalidation_impl_junit_tests', |
| 165 'components_policy_junit_tests', | 165 'components_policy_junit_tests', |
| 166 'components_web_restrictions_junit_tests', | 166 'components_web_restrictions_junit_tests', |
| 167 'content_junit_tests', | 167 'content_junit_tests', |
| 168 'content_junit_tests', | 168 'content_junit_tests', |
| 169 'junit_unit_tests', | 169 'junit_unit_tests', |
| 170 'media_router_tests', |
| 170 'net_junit_tests', | 171 'net_junit_tests', |
| 171 'net_junit_tests', | 172 'net_junit_tests', |
| 172 'ui_junit_tests', | 173 'ui_junit_tests', |
| 173 'webapk_client_junit_tests', | 174 'webapk_client_junit_tests', |
| 174 'webapk_shell_apk_junit_tests', | 175 'webapk_shell_apk_junit_tests', |
| 175 | 176 |
| 176 # These tests are only run on WebRTC CI. | 177 # These tests are only run on WebRTC CI. |
| 177 'AppRTCMobileTest', | 178 'AppRTCMobileTest', |
| 178 'android_junit_tests', | 179 'android_junit_tests', |
| 179 'audio_decoder_unittests', | 180 'audio_decoder_unittests', |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 elif args.mode == 'remaining': | 477 elif args.mode == 'remaining': |
| 477 print_remaining(args.test_name, tests_location) | 478 print_remaining(args.test_name, tests_location) |
| 478 return result | 479 return result |
| 479 except Error as e: | 480 except Error as e: |
| 480 sys.stderr.write('%s\n' % e) | 481 sys.stderr.write('%s\n' % e) |
| 481 return 1 | 482 return 1 |
| 482 | 483 |
| 483 | 484 |
| 484 if __name__ == "__main__": | 485 if __name__ == "__main__": |
| 485 sys.exit(main()) | 486 sys.exit(main()) |
| OLD | NEW |