aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/testdata/netbsd
Commit message (Collapse)AuthorAgeFilesLines
* pkg/report: do more agressive NUM-replacementAleksandr Nogikh2021-08-131-1/+1
| | | | | | | | | | | | Replace not just long sequences of digits in report titles, but every sequence of '0'-'9' that is not surrounded by word characters. As such matches will overlap and Go does not (currently?) support regexp lookarounds, do the replacement multiple times until there is nothing more to do. This should not slow down syzkaller, since this code is only invoked during crash processing. Restrict LINE replacement only to fragments that have a preceeding file name. This prevents replacements like [1:2] -> [NUM:LINE].
* pkg/report: ignore "ddb.onpanic" on netbsdDmitry Vyukov2020-10-261-0/+14
|
* pkg/report: fix kUBSan reporting on NetBSDm00nbsd2020-05-241-0/+1415
|
* Correct parsing of Kernel ASan reportsKamil Rytarowski2019-11-141-0/+1583
| | | | Handle __asan strings in backtraces.
* pkg/report: Fix corrupted reportsR3x2019-07-145-81/+4721
|
* pkg/report: fix ASan report parsing bugR3x2019-07-012-26/+1242
|
* pkg/report: fix other NetBSD corrupted reportsSiddharth M2019-05-075-133/+91
| | | | | | * Fix Superviser mode and lock error * Fix smaller issues
* pkg/report: fix the error corrupting reportsSiddharth M2019-03-082-1/+17
| | | | | | * fix error with reports * add additional testdata
* pkg/report: add better ASan bug parsing for NetBSDSiddharth M2019-03-053-35/+10
| | | | | | | | * Add basic ASan parser * Fix the test data * Removed Read|Write parameter
* pkg/report: ignore postfix error on netbsdDmitry Vyukov2019-02-271-0/+2
|
* pkg/report: update UBSAN netbsd report formatDmitry Vyukov2019-02-234-8/+8
|
* pkg/report: add KUBSan netbsd reportsDmitry Vyukov2019-02-234-0/+12
| | | | | Just to detect them at all and have some test base. Will need better bug identification later.
* pkg/report: add few netbsd KASAN reportsDmitry Vyukov2019-02-222-0/+35
|
* pkg/report: add simple version of netbsd crash parserDmitry Vyukov2019-02-016-0/+169
Just something to start with. Plus some test cases.