syz-manager/mgrconfig: add another OOM suppression

If sshd was killed, we will get "lost connection".
This commit is contained in:
Dmitry Vyukov 2017-11-08 17:27:42 +01:00
parent dd1609f876
commit 3b7ad24d6c

View File

@ -247,7 +247,9 @@ func parseSuppressions(cfg *Config) error {
"fatal error: unexpected signal during runtime execution", // presubmably OOM turned into SIGBUS
"signal SIGBUS: bus error", // presubmably OOM turned into SIGBUS
"Out of memory: Kill process .* \\(syz-fuzzer\\)",
"Out of memory: Kill process .* \\(sshd\\)",
"lowmemorykiller: Killing 'syz-fuzzer'",
"lowmemorykiller: Killing 'sshd'",
}...)
for _, s := range supp {
re, err := regexp.Compile(s)