forked from google/syzkaller
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbug.html
47 lines (39 loc) · 1.33 KB
/
bug.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{{/*
Copyright 2017 syzkaller project authors. All rights reserved.
Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
Page with details about a single bug.
*/}}
<!doctype html>
<html>
<head>
{{template "head" .Header}}
<title>{{.Bug.Title}}</title>
</head>
<body>
{{template "header" .Header}}
<b>{{.Bug.Title}}</b><br>
Status: {{if .Bug.ExternalLink}}<a href="{{.Bug.ExternalLink}}">{{.Bug.Status}}</a>{{else}}{{.Bug.Status}}{{end}}<br>
Reported-by: {{.Bug.CreditEmail}}<br>
{{if .Bug.Commits}}
Fix commit: {{template "fix_commits" .Bug.Commits}}<br>
{{if .Bug.ClosedTime.IsZero}}
Patched on: {{.Bug.PatchedOn}}, missing on: {{.Bug.MissingOn}}<br>
{{end}}
{{end}}
First crash: {{formatLateness $.Now $.Bug.FirstTime}}, last: {{formatLateness $.Now $.Bug.LastTime}}<br>
{{template "bisect_results" .BisectCause}}
{{template "bisect_results" .BisectFix}}
{{template "bug_list" .DupOf}}
{{template "bug_list" .Dups}}
{{template "bug_list" .Similar}}
{{template "job_list" .TestPatchJobs}}
{{if .SampleReport}}
<br><b>Sample crash report:</b><br>
<textarea id="log_textarea" readonly rows="25" wrap=off>{{printf "%s" .SampleReport}}</textarea><br>
{{end}}
{{if .FixBisections}}
{{template "crash_list" .FixBisections}}
{{end}}
{{template "crash_list" .Crashes}}
</body>
</html>