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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "args": { | 82 "args": { |
83 "job_type": "linux_asan_d8_v8_arm_dbg", | 83 "job_type": "linux_asan_d8_v8_arm_dbg", |
84 "reproducible": "True", | 84 "reproducible": "True", |
85 "open": "True", | 85 "open": "True", |
86 "bug_information": "", | 86 "bug_information": "", |
87 }, | 87 }, |
88 "crash_state": ANY_RE, | 88 "crash_state": ANY_RE, |
89 }, | 89 }, |
90 { | 90 { |
91 "args": { | 91 "args": { |
| 92 "job_type": "linux_asan_d8_ignition_v8_arm_dbg", |
| 93 "reproducible": "True", |
| 94 "open": "True", |
| 95 "bug_information": "", |
| 96 }, |
| 97 "crash_state": ANY_RE, |
| 98 }, |
| 99 { |
| 100 "args": { |
92 "job_type": "linux_asan_d8_v8_arm64_dbg", | 101 "job_type": "linux_asan_d8_v8_arm64_dbg", |
93 "reproducible": "True", | 102 "reproducible": "True", |
94 "open": "True", | 103 "open": "True", |
95 "bug_information": "", | 104 "bug_information": "", |
96 }, | 105 }, |
97 "crash_state": ANY_RE, | 106 "crash_state": ANY_RE, |
98 }, | 107 }, |
99 { | 108 { |
100 "args": { | 109 "args": { |
101 "job_type": "linux_asan_d8_v8_mipsel_dbg", | 110 "job_type": "linux_asan_d8_v8_mipsel_dbg", |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 | 219 |
211 if options.results_file: | 220 if options.results_file: |
212 with open(options.results_file, "w") as f: | 221 with open(options.results_file, "w") as f: |
213 f.write(json.dumps(results)) | 222 f.write(json.dumps(results)) |
214 else: | 223 else: |
215 print results | 224 print results |
216 | 225 |
217 | 226 |
218 if __name__ == "__main__": | 227 if __name__ == "__main__": |
219 sys.exit(Main()) | 228 sys.exit(Main()) |
OLD | NEW |