diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-09-04 11:38:00 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2016-09-05 12:49:47 +0200 |
| commit | db5eff3a804d414190822b409fa4b4592c121cc1 (patch) | |
| tree | 9436105c8dcaa129aa4b4045faea97c7db845e3f /config | |
| parent | 2e94e89c78051edc5b93b903b471649fab194179 (diff) | |
config: add another OOM message to suppressions
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go index a392b69f5..3983ba002 100644 --- a/config/config.go +++ b/config/config.go @@ -219,7 +219,8 @@ func parseSuppressions(cfg *Config) ([]*regexp.Regexp, error) { "fatal error: runtime: out of memory", "fatal error: unexpected signal during runtime execution", // presubmably OOM turned into SIGBUS "Out of memory: Kill process .* \\(syz-fuzzer\\)", - //"INFO: lockdep is turned off", // printed by some sysrq that dumps scheduler state + "lowmemorykiller: Killing 'syz-fuzzer'", + //"INFO: lockdep is turned off", // printed by some sysrq that dumps scheduler state, but also on all lockdep reports }...) var suppressions []*regexp.Regexp for _, s := range supp { |
