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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "args": { | 46 "args": { |
47 "job_type": "linux_asan_chrome_v8", | 47 "job_type": "linux_asan_chrome_v8", |
48 "reproducible": "True", | 48 "reproducible": "True", |
49 "open": "True", | 49 "open": "True", |
50 "bug_information": "", | 50 "bug_information": "", |
51 }, | 51 }, |
52 "crash_state": V8_INTERNAL_RE, | 52 "crash_state": V8_INTERNAL_RE, |
53 }, | 53 }, |
54 { | 54 { |
55 "args": { | 55 "args": { |
| 56 "job_type": "linux_asan_d8", |
| 57 "reproducible": "True", |
| 58 "open": "True", |
| 59 "bug_information": "", |
| 60 }, |
| 61 "crash_state": ANY_RE, |
| 62 }, |
| 63 { |
| 64 "args": { |
56 "job_type": "linux_asan_d8_dbg", | 65 "job_type": "linux_asan_d8_dbg", |
57 "reproducible": "True", | 66 "reproducible": "True", |
58 "open": "True", | 67 "open": "True", |
59 "bug_information": "", | 68 "bug_information": "", |
60 }, | 69 }, |
61 "crash_state": ANY_RE, | 70 "crash_state": ANY_RE, |
62 }, | 71 }, |
63 { | 72 { |
64 "args": { | 73 "args": { |
| 74 "job_type": "linux_asan_d8_v8_arm_dbg", |
| 75 "reproducible": "True", |
| 76 "open": "True", |
| 77 "bug_information": "", |
| 78 }, |
| 79 "crash_state": ANY_RE, |
| 80 }, |
| 81 { |
| 82 "args": { |
65 "job_type": "linux_asan_d8_v8_arm64_dbg", | 83 "job_type": "linux_asan_d8_v8_arm64_dbg", |
66 "reproducible": "True", | 84 "reproducible": "True", |
67 "open": "True", | 85 "open": "True", |
68 "bug_information": "", | 86 "bug_information": "", |
69 }, | 87 }, |
70 "crash_state": ANY_RE, | 88 "crash_state": ANY_RE, |
71 }, | 89 }, |
72 { | 90 { |
73 "args": { | 91 "args": { |
74 "job_type": "linux_asan_d8_v8_mipsel_dbg", | 92 "job_type": "linux_asan_d8_v8_mipsel_dbg", |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 201 |
184 if options.results_file: | 202 if options.results_file: |
185 with open(options.results_file, "w") as f: | 203 with open(options.results_file, "w") as f: |
186 f.write(json.dumps(results)) | 204 f.write(json.dumps(results)) |
187 else: | 205 else: |
188 print results | 206 print results |
189 | 207 |
190 | 208 |
191 if __name__ == "__main__": | 209 if __name__ == "__main__": |
192 sys.exit(Main()) | 210 sys.exit(Main()) |
OLD | NEW |