From 17e67ed6bfc97990b3215df7fe40b5fba86eba62 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 4 Sep 2025 16:23:18 +0200 Subject: syz-cluster: configure bug title filter Instead of just checking whether the bug was observed on the base crash, accept a regexp of accepted bug titles as well. --- syz-cluster/pkg/api/api.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'syz-cluster/pkg') diff --git a/syz-cluster/pkg/api/api.go b/syz-cluster/pkg/api/api.go index 49a5a7f45..a634fe344 100644 --- a/syz-cluster/pkg/api/api.go +++ b/syz-cluster/pkg/api/api.go @@ -26,6 +26,8 @@ type FuzzConfig struct { CorpusURL string `json:"corpus_url"` // Don't expect kernel coverage for the patched area. SkipCoverCheck bool `json:"skip_cover_check"` + // Only report the bugs that match the regexp. + BugTitleRe string `json:"bug_title_re"` } // The triage step of the workflow will request these from controller. -- cgit mrf-deployment