aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/manager/report_generator.go
Commit message (Collapse)AuthorAgeFilesLines
* all: reduce params to MakeReportGeneratorJoey Jiao2025-03-171-1/+1
|
* all: delete dead codeTaras Madan2025-02-101-9/+0
| | | | | go install golang.org/x/tools/cmd/deadcode@latest deadcode -test ./...
* tools: add a syz-diff toolAleksandr Nogikh2024-10-251-0/+9
| | | | | | | | | | | | | | This is the prototype version of the patch series fuzzing functionality based on the syzkaller fuzzing engine. The tool takes two syzkaller configs -- one for the base kernel, one for the patched kernel. Optionally the patch itself can be also provided. syz-diff will consider a bug patched-only if: 1) It happened while fuzzing the patched kernel. 2) It was never observed on the base kernel. 3) The tool found a repro on the patched kernel. 4) The repro did not crash the base kernel.
* pkg/manager: move coverage filter code out of syz-managerAleksandr Nogikh2024-09-061-0/+70
This will enable the reuse of the functionality elsewhere.