From 66f8bb20261f8fa19e995a00119393f130c43d9f Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Tue, 2 Jun 2020 19:15:01 +0200 Subject: dashboard, syz-ci: add blacklist for bisection results Currently only ignores the commit that adds the Raw Gadget interface. Requested here: https://groups.google.com/g/syzkaller-bugs/c/sZUeGC3Fh-o/m/t_5cKPrMAQAJ --- dashboard/dashapi/dashapi.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'dashboard/dashapi/dashapi.go') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index fe9a30e19..ad1e1befa 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -177,9 +177,10 @@ const ( type JobDoneFlags int64 const ( - BisectResultMerge JobDoneFlags = 1 << iota // bisected to a merge commit - BisectResultNoop // commit does not affect resulting kernel binary - BisectResultRelease // commit is a kernel release + BisectResultMerge JobDoneFlags = 1 << iota // bisected to a merge commit + BisectResultNoop // commit does not affect resulting kernel binary + BisectResultRelease // commit is a kernel release + BisectResultBlacklist // commit is blacklisted, see syz-ci/jobs.go ) func (dash *Dashboard) JobPoll(req *JobPollReq) (*JobPollResp, error) { -- cgit mrf-deployment