| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 'components_web_restrictions_junit_tests', | 176 'components_web_restrictions_junit_tests', |
| 177 'content_junit_tests', | 177 'content_junit_tests', |
| 178 'content_junit_tests', | 178 'content_junit_tests', |
| 179 'device_junit_tests', | 179 'device_junit_tests', |
| 180 'junit_unit_tests', | 180 'junit_unit_tests', |
| 181 'media_router_perf_tests', | 181 'media_router_perf_tests', |
| 182 'media_router_tests', | 182 'media_router_tests', |
| 183 'motopho_latency_test', | 183 'motopho_latency_test', |
| 184 'net_junit_tests', | 184 'net_junit_tests', |
| 185 'net_junit_tests', | 185 'net_junit_tests', |
| 186 'service_junit_tests', |
| 186 'ui_junit_tests', | 187 'ui_junit_tests', |
| 187 'webapk_client_junit_tests', | 188 'webapk_client_junit_tests', |
| 188 'webapk_shell_apk_junit_tests', | 189 'webapk_shell_apk_junit_tests', |
| 189 | 190 |
| 190 # These tests are only run on WebRTC CI. | 191 # These tests are only run on WebRTC CI. |
| 191 'AppRTCMobileTest', | 192 'AppRTCMobileTest', |
| 192 'android_junit_tests', | 193 'android_junit_tests', |
| 193 'audio_decoder_unittests', | 194 'audio_decoder_unittests', |
| 194 'common_audio_unittests', | 195 'common_audio_unittests', |
| 195 'common_video_unittests', | 196 'common_video_unittests', |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 elif args.mode == 'remaining': | 492 elif args.mode == 'remaining': |
| 492 print_remaining(args.test_name, tests_location) | 493 print_remaining(args.test_name, tests_location) |
| 493 return result | 494 return result |
| 494 except Error as e: | 495 except Error as e: |
| 495 sys.stderr.write('%s\n' % e) | 496 sys.stderr.write('%s\n' % e) |
| 496 return 1 | 497 return 1 |
| 497 | 498 |
| 498 | 499 |
| 499 if __name__ == "__main__": | 500 if __name__ == "__main__": |
| 500 sys.exit(main()) | 501 sys.exit(main()) |
| OLD | NEW |