| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 'angle_deqp_gles3_tests', | 138 'angle_deqp_gles3_tests', |
| 139 'cast_media_unittests', | 139 'cast_media_unittests', |
| 140 'cast_shell_browser_test', | 140 'cast_shell_browser_test', |
| 141 'chromevox_tests', | 141 'chromevox_tests', |
| 142 'nacl_helper_nonsfi_unittests', | 142 'nacl_helper_nonsfi_unittests', |
| 143 | 143 |
| 144 # These targets are run on the bots but not listed in the | 144 # These targets are run on the bots but not listed in the |
| 145 # buildbot JSON files. | 145 # buildbot JSON files. |
| 146 # TODO(kbr): remove these before closing http://crbug.com/542370 . | 146 # TODO(kbr): remove these before closing http://crbug.com/542370 . |
| 147 'angle_end2end_tests', | 147 'angle_end2end_tests', |
| 148 'content_gl_tests', | |
| 149 'gl_tests', | 148 'gl_tests', |
| 150 'gl_unittests', | 149 'gl_unittests', |
| 151 'gles2_conform_test', | 150 'gles2_conform_test', |
| 152 'tab_capture_end2end_tests', | 151 'tab_capture_end2end_tests', |
| 153 'telemetry_gpu_test', | 152 'telemetry_gpu_test', |
| 154 'telemetry_gpu_unittests', | 153 'telemetry_gpu_unittests', |
| 155 'telemetry_perf_unittests', | 154 'telemetry_perf_unittests', |
| 156 'telemetry_unittests', | 155 'telemetry_unittests', |
| 157 } | 156 } |
| 158 | 157 |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 elif args.mode == 'remaining': | 389 elif args.mode == 'remaining': |
| 391 print_remaining(args.test_name, tests_location) | 390 print_remaining(args.test_name, tests_location) |
| 392 return result | 391 return result |
| 393 except Error as e: | 392 except Error as e: |
| 394 sys.stderr.write('%s\n' % e) | 393 sys.stderr.write('%s\n' % e) |
| 395 return 1 | 394 return 1 |
| 396 | 395 |
| 397 | 396 |
| 398 if __name__ == "__main__": | 397 if __name__ == "__main__": |
| 399 sys.exit(main()) | 398 sys.exit(main()) |
| OLD | NEW |