aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/dashapi/dashapi.go
diff options
context:
space:
mode:
authorAndrey Konovalov <andreyknvl@google.com>2020-06-02 19:15:01 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-06-03 10:24:14 +0200
commit66f8bb20261f8fa19e995a00119393f130c43d9f (patch)
treed25f2985e95c1120e843d027e240eadf3b3d8ed7 /dashboard/dashapi/dashapi.go
parentf3ba1b5b7b3b1e8e178f239c514ba0c2cb50f214 (diff)
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
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
-rw-r--r--dashboard/dashapi/dashapi.go7
1 files changed, 4 insertions, 3 deletions
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) {