aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/netbsd_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/report: deduplicate code across netbsd and openbsdDmitry Vyukov2020-06-071-64/+2
|
* pkg/report: fix linux path prefix trimmingDmitry Vyukov2019-07-231-5/+5
| | | | | | | | | | After f613a7c4 ("pkg/cover: fix prefix computation") we stopped trimming starting "/" from linux path names. This broke get_maintainers.pl script which is now given non-existent absolute paths (e.g. "/mm/mmap.c"), as the result syzbot can't find any maintainers for bug reports and mails them into lkml limbo. Trim starting slashes and dots. Extend tests for catch this.
* pkg/report: refactor argument passingDmitry Vyukov2019-07-231-5/+7
| | | | | | We now pass 5 arguments through a bunch of functions, this is quite inconvinient when the set of arguments changes. Incapsulate all arguments in a struct and pass/store it as a whole.
* pkg/cover: fix prefix computationSiddharth M2019-07-171-4/+5
| | | | | | | | | | | | | | | | | | * pkg/cover: Modify parsing logic 1. Remove prefix computation 2. Add a mgrconfig for kernel build directory * pkg/report: shorten reports with kernelBuildSrc instead of kernelSrc * pkg/report: Fix failing tests * pkg/report: fix formating issues * tools/syz-cover: Fix unintended redefinition * make changes to fix failing ci build * pkg/report: fix issues
* pkg/report: fix error in report symbolizationR3x2019-06-261-7/+7
|
* pkg/report: Add initial support for report symbolisationSiddharth M2019-06-131-0/+98
* pkg/report: initial netbsd commit * pkg/report: fix netbsd errors and add comments to help * fix spelling error