blob: c7d8ae879e38471aede3b3122b33e74ac527e8bc (
plain)
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
|
{{/*
Copyright 2024 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.
*/}}
<table class="list_table">
<caption>Corpus{{if $.Call}} for {{$.Call}}{{end}}:</caption>
<thead>
<tr>
<th>Coverage</th>
<th>Program</th>
</tr>
</thead>
<tbody>
{{range $inp := $.Inputs}}
<tr>
<td>
<a href='/cover?input={{$inp.Sig}}'>{{$inp.Cover}}</a>
{{if $.RawCover}}
/ <a href="/debuginput?sig={{$inp.Sig}}">[raw]</a>
{{end}}
</td>
<td><a href="/input?sig={{$inp.Sig}}">{{$inp.Short}}</a></td>
</tr>
{{end}}
</tbody>
</table>
|