aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-testbed/stats.go
diff options
context:
space:
mode:
Diffstat (limited to 'tools/syz-testbed/stats.go')
-rw-r--r--tools/syz-testbed/stats.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/syz-testbed/stats.go b/tools/syz-testbed/stats.go
index 750507945..9af33f4e7 100644
--- a/tools/syz-testbed/stats.go
+++ b/tools/syz-testbed/stats.go
@@ -33,6 +33,7 @@ type SyzReproResult struct {
Input *SyzReproInput
ReproFound bool
CReproFound bool
+ ReproTitle string
Duration time.Duration
}
@@ -393,7 +394,7 @@ func (view StatView) GenerateReproDurationTable() (*Table, error) {
// List all repro attempts.
func (view StatView) GenerateReproAttemptsTable() (*Table, error) {
- table := NewTable("Result #", "Bug", "Checkout", "Repro found", "C repro found", "Duration")
+ table := NewTable("Result #", "Bug", "Checkout", "Repro found", "C repro found", "Repro title", "Duration")
for gid, group := range view.Groups {
for rid, result := range group.SyzReproResults() {
table.AddRow(
@@ -402,6 +403,7 @@ func (view StatView) GenerateReproAttemptsTable() (*Table, error) {
group.Name,
NewBoolCell(result.ReproFound),
NewBoolCell(result.CReproFound),
+ result.ReproTitle,
result.Duration.Round(time.Second).String(),
)
}