Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: tools/release/check_clusterfuzz.py

Issue 1829753002: [Ignition] Add automatic reports for ignition issues on clusterfuzz. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698