OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2014 the V8 project authors. All rights reserved. | 2 # Copyright 2014 the V8 project 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 """ | 6 """ |
7 Script to check for new clusterfuzz issues since the last rolled v8 revision. | 7 Script to check for new clusterfuzz issues since the last rolled v8 revision. |
8 | 8 |
9 Returns a json list with test case IDs if any. | 9 Returns a json list with test case IDs if any. |
10 | 10 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "args": { | 64 "args": { |
65 "job_type": "linux_asan_d8_dbg", | 65 "job_type": "linux_asan_d8_dbg", |
66 "reproducible": "True", | 66 "reproducible": "True", |
67 "open": "True", | 67 "open": "True", |
68 "bug_information": "", | 68 "bug_information": "", |
69 }, | 69 }, |
70 "crash_state": ANY_RE, | 70 "crash_state": ANY_RE, |
71 }, | 71 }, |
72 { | 72 { |
73 "args": { | 73 "args": { |
| 74 "job_type": "linux_asan_d8_ignition_dbg", |
| 75 "reproducible": "True", |
| 76 "open": "True", |
| 77 "bug_information": "", |
| 78 }, |
| 79 "crash_state": ANY_RE, |
| 80 }, |
| 81 { |
| 82 "args": { |
74 "job_type": "linux_asan_d8_v8_arm_dbg", | 83 "job_type": "linux_asan_d8_v8_arm_dbg", |
75 "reproducible": "True", | 84 "reproducible": "True", |
76 "open": "True", | 85 "open": "True", |
77 "bug_information": "", | 86 "bug_information": "", |
78 }, | 87 }, |
79 "crash_state": ANY_RE, | 88 "crash_state": ANY_RE, |
80 }, | 89 }, |
81 { | 90 { |
82 "args": { | 91 "args": { |
83 "job_type": "linux_asan_d8_v8_arm64_dbg", | 92 "job_type": "linux_asan_d8_v8_arm64_dbg", |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 210 |
202 if options.results_file: | 211 if options.results_file: |
203 with open(options.results_file, "w") as f: | 212 with open(options.results_file, "w") as f: |
204 f.write(json.dumps(results)) | 213 f.write(json.dumps(results)) |
205 else: | 214 else: |
206 print results | 215 print results |
207 | 216 |
208 | 217 |
209 if __name__ == "__main__": | 218 if __name__ == "__main__": |
210 sys.exit(Main()) | 219 sys.exit(Main()) |
OLD | NEW |