aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/testdata/fuchsia
Commit message (Collapse)AuthorAgeFilesLines
* pkg/report: update testdata report typesTaras Madan2025-07-023-0/+3
|
* executor: add runner modeDmitry Vyukov2024-06-241-15/+15
| | | | | | | Move all syz-fuzzer logic into syz-executor and remove syz-fuzzer. Also restore syz-runtest functionality in the manager. Update #4917 (sets most signal handlers to SIG_IGN)
* 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].
* sys/fuchsia: remove deprecated exception APIsDavid Pursell2019-11-141-65/+0
| | | | | | The port-based exception APIs have been deprecated on Fuchsia and will be removed shortly. Delete them from the syscall definitions and modify the Fuchsia executor to use the new channel-based APIs instead.
* pkg/report: add Type/Frame to ReportDmitry Vyukov2019-05-202-0/+2
| | | | | | In several places we do special handling for some crash types. Currently we compare report title with magic strings, which is error-prone. Add explicit Type to reports.
* pkg/report: fix Start/EndPos calculation for fuchsiaDmitry Vyukov2018-12-201-0/+22
| | | | | | We computed Start/EndPos after trimming line prefix, this resulted in offsetted values which are not correct. Fix that. Add more tests and checks for Start/EndPos.
* pkg/report: detect Go service panics for fuchsiaDmitry Vyukov2018-11-223-0/+73
|
* pkg/report: refine fuchsia function name regexpDmitry Vyukov2018-09-041-0/+31
| | | | C++ function names can contain '~'.
* pkg/report: refactor and improve fuchsia report parsingDmitry Vyukov2018-08-2525-275/+1069
| | | | | | | | | Switch to the existing oops-based infrastructure. Extending existing code is nearly impossible. Detect service crashes on fuchsia. Add more tests.
* pkg/report: detect fuchsia double faultsDmitry Vyukov2018-07-061-0/+22
|
* pkg/report: suppress fuzzer crashes on fuchsiaDmitry Vyukov2018-06-301-0/+52
|
* pkg/report: better detect hangs on fuchsiaDmitry Vyukov2018-06-303-1/+29
|
* pkg/report: implement fuchsia reporterDmitry Vyukov2018-06-274-31/+83
|
* pkg/report: add simplistic fuchsia reporterDmitry Vyukov2018-06-064-0/+260