From 4e740c00a474b578896830c7d27d90d9474364bb Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 22 Oct 2020 18:59:10 +0200 Subject: dashboard/app: show more detailed info about bisections 1. Split cause/fix bisections in the bug table. 2. Show if bisection is inconclusive/unreliable in the bug table. 3. Show if bisection is unreliable on the bug page. Update #2098 --- dashboard/app/templates.html | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) (limited to 'dashboard/app/templates.html') diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html index f6839a594..0fc52bd66 100644 --- a/dashboard/app/templates.html +++ b/dashboard/app/templates.html @@ -93,7 +93,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{end}} Title Repro - Bisected + Cause bisect + Fix bisect Count Last Reported @@ -115,15 +116,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{if $.ShowNamespace}}{{$b.Namespace}}{{end}} {{$b.Title}} {{formatReproLevel $b.ReproLevel}} - - {{if and $b.BisectCauseDone $b.BisectFixDone}} - cause+fix - {{else if $b.BisectCauseDone}} - cause - {{else if $b.BisectFixDone}} - fix - {{end}} - + {{print $b.BisectCause}} + {{print $b.BisectFix}} {{$b.NumCrashes}} {{formatLateness $.Now $b.LastTime}} @@ -266,8 +260,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{else if eq .Type $fixJob}} Fix bisection: fixed by {{end}} - ({{link .LogLink "bisect log"}}):
-
+ ({{link .LogLink "bisect log"}}) {{print .Flags}}:
+ commit {{.Commit.Hash}}
Author: {{.Commit.Author}}
Date: {{formatKernelTime .Commit.Date}}
@@ -281,7 +275,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Fix bisection: the fix commit could be any of {{end}} ({{link .LogLink "bisect log"}}):
-
+ {{range $com := .Commits}}   {{formatTagHash $com.Hash}} {{$com.Title}}
{{end}} -- cgit mrf-deployment