aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-11-08 17:27:42 +0100
committerDmitry Vyukov <dvyukov@google.com>2017-11-08 18:01:43 +0100
commit3b7ad24d6cd0566c2f307ab62c78ffdd4f76de3d (patch)
treed3cd99b8543b65df02d57540147d5319b03cb877
parentdd1609f876256c4305ac71591fed255880fa9ba7 (diff)
syz-manager/mgrconfig: add another OOM suppression
If sshd was killed, we will get "lost connection".
-rw-r--r--syz-manager/mgrconfig/mgrconfig.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/syz-manager/mgrconfig/mgrconfig.go b/syz-manager/mgrconfig/mgrconfig.go
index f29951e15..87562c3dd 100644
--- a/syz-manager/mgrconfig/mgrconfig.go
+++ b/syz-manager/mgrconfig/mgrconfig.go
@@ -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)