aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/manager/diff_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/manager: fix a NeedRepro checkAleksandr Nogikh2025-08-061-8/+8
| | | | | It's been checking the inverse of what was needed. Rename the helper function to reduce confusion in the future.
* pkg/manager: improve patched crash skip rulesAleksandr Nogikh2025-07-291-0/+13
| | | | | | | The rules were too generic - there are plenty of functions that have "stall" as substring, yet they do not relate to rcu stall bugs. Improve the rules list and add a unit test.
* all: determine patched symbols for focused fuzzingAleksandr Nogikh2025-07-221-3/+44
| | | | | | | | | Hash the code section of the individual symbols from vmlinux.o and use it to determine the functions that changed their bodies between the base and the patched build. If the number of affected symbols is reasonable (<5%), fuzz it with the highest priority.
* pkg/manager: add a test for PatchFocusAreasAleksandr Nogikh2025-07-221-0/+68
For that, make a part of the tar_test.go reusable.