From ecf8ceeef241d31b45545eb3e08edcb73c079151 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 13 Dec 2018 12:33:17 +0100 Subject: pkg/report: pkg/report: relaxed gvisor OOM suppressions more There are more variations of this panic format. --- pkg/report/gvisor.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkg/report/gvisor.go') diff --git a/pkg/report/gvisor.go b/pkg/report/gvisor.go index dab63577b..ec0a494ea 100644 --- a/pkg/report/gvisor.go +++ b/pkg/report/gvisor.go @@ -22,9 +22,9 @@ func ctorGvisor(target *targets.Target, kernelSrc, kernelObj string, suppressions := []string{ "fatal error: runtime: out of memory", "fatal error: runtime: cannot allocate memory", - "panic: ptrace sysemu failed: no such process", // OOM kill - `panic: ptrace set fpregs \(.*\) failed: no such process`, // OOM kill - `panic: ptrace set regs \(.*\) failed: no such process`, // OOM kill + "panic: ptrace sysemu failed: no such process", // OOM kill + `panic: ptrace set fpregs.* failed: no such process`, // OOM kill + `panic: ptrace set regs.* failed: no such process`, // OOM kill "panic: failed to start executor binary", "panic: executor failed: pthread_create failed", "panic: error mapping run data: error mapping runData: cannot allocate memory", -- cgit mrf-deployment