diff options
| author | Andrey Konovalov <andreyknvl@google.com> | 2020-06-02 19:15:01 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-06-03 10:24:14 +0200 |
| commit | 66f8bb20261f8fa19e995a00119393f130c43d9f (patch) | |
| tree | d25f2985e95c1120e843d027e240eadf3b3d8ed7 /dashboard/dashapi/dashapi.go | |
| parent | f3ba1b5b7b3b1e8e178f239c514ba0c2cb50f214 (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.go | 7 |
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) { |
