diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-09-04 16:23:18 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-10-01 20:14:51 +0000 |
| commit | 17e67ed6bfc97990b3215df7fe40b5fba86eba62 (patch) | |
| tree | 8cd8ca14bd5e884d1edf670a513920ed597e209f /syz-cluster/pkg | |
| parent | a90d2b19fb0b8b7526a51b8bbeb9b887b84503e6 (diff) | |
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.
Diffstat (limited to 'syz-cluster/pkg')
| -rw-r--r-- | syz-cluster/pkg/api/api.go | 2 |
1 files changed, 2 insertions, 0 deletions
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. |
