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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
65 'nacl_helper_nonsfi_unittests', | 65 'nacl_helper_nonsfi_unittests', |
66 | 66 |
67 # These targets are run on the bots but not listed in the | 67 # These targets are run on the bots but not listed in the |
68 # buildbot JSON files. | 68 # buildbot JSON files. |
69 'angle_end2end_tests', | 69 'angle_end2end_tests', |
70 'content_gl_tests', | 70 'content_gl_tests', |
71 'gl_tests', | 71 'gl_tests', |
72 'gles2_conform_test', | 72 'gles2_conform_test', |
73 'tab_capture_end2end_tests', | 73 'tab_capture_end2end_tests', |
74 'telemetry_gpu_test', | 74 'telemetry_gpu_test', |
75 'telemetry_gpu_unittests', | |
Ken Russell (switch to Gerrit)
2015/09/18 23:52:51
I don't think this is needed. Could you please tak
nednguyen
2015/09/21 17:26:18
Done.
nednguyen
2015/09/21 17:29:12
Actually, this is needed to bypass the presubmit c
Ken Russell (switch to Gerrit)
2015/09/21 20:59:38
Pawel, Dirk, do either of you know why that's happ
| |
75 } | 76 } |
76 | 77 |
77 | 78 |
78 class Error(Exception): | 79 class Error(Exception): |
79 """Processing error.""" | 80 """Processing error.""" |
80 | 81 |
81 | 82 |
82 def get_isolates(): | 83 def get_isolates(): |
83 """Returns the list of all isolate files.""" | 84 """Returns the list of all isolate files.""" |
84 | 85 |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
308 elif args.mode == 'remaining': | 309 elif args.mode == 'remaining': |
309 print_remaining(args.test_name, tests_location) | 310 print_remaining(args.test_name, tests_location) |
310 return result | 311 return result |
311 except Error as e: | 312 except Error as e: |
312 sys.stderr.write('%s\n' % e) | 313 sys.stderr.write('%s\n' % e) |
313 return 1 | 314 return 1 |
314 | 315 |
315 | 316 |
316 if __name__ == "__main__": | 317 if __name__ == "__main__": |
317 sys.exit(main()) | 318 sys.exit(main()) |
OLD | NEW |