From bad3cce26cf7f426903060995fd9fde0532ff2af Mon Sep 17 00:00:00 2001 From: Zubin Mithra Date: Thu, 8 Aug 2019 12:35:23 -0700 Subject: dashboard/app: allow reporting of BisectFix results * Modify mail_bisect_result.txt to allow for sending fix bisection results. * Modify BisectResult to have a Fix field; introduce selectBisect for use within the template for choosing between BisectCause/BisectFix fields. * Modify bisectFromJob() to return BisectResult with Fix field set if relevant. * Modify the tests inside bisect_test.go to account for bisect fix related reporting emails. * Modify incomingMail() to ignore any emails from syzbot itself. --- dashboard/dashapi/dashapi.go | 1 + 1 file changed, 1 insertion(+) (limited to 'dashboard/dashapi/dashapi.go') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index fffc0b8e1..bb5771bbe 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -332,6 +332,7 @@ type BisectResult struct { LogLink string CrashLogLink string CrashReportLink string + Fix bool } type BugUpdate struct { -- cgit mrf-deployment