diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-07-01 14:26:04 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-07-01 13:21:29 +0000 |
| commit | 1f0ee43044bc8fc00bc1eccc85a93bf2b9972dd1 (patch) | |
| tree | 5cfc8db10998ff99b5c68376106c0fc0d9c4e5d2 /pkg/report/linux.go | |
| parent | 76838be540c998a66392d0267d7c9ee3b4a27a46 (diff) | |
pkg/report: suppress executor SIGBUS
SIGBUS means OOM on Linux.
Most of the crashes that happen during fuzzing are SIGBUS,
so separate them from SIGSEGV and suppress.
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 26cb5461f..596c834ce 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -126,6 +126,7 @@ func ctorLinux(cfg *config) (reporterImpl, []string, error) { "panic: failed to create temp dir", "fatal error: unexpected signal during runtime execution", // presubmably OOM turned into SIGBUS "signal SIGBUS: bus error", // presubmably OOM turned into SIGBUS + "SYZFAIL: SIGBUS", "Out of memory: Kill process .* \\(syz-executor\\)", "Out of memory: Kill process .* \\(sshd\\)", "Killed process .* \\(syz-executor\\)", |
