From 33424b08c3d32341c2ace0f1076053cf579a722b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 24 Apr 2018 09:59:10 +0200 Subject: pkg/report: more corrupted report detection --- pkg/report/linux.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index d947e4884..faeb87e97 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -583,8 +583,8 @@ var linuxStackParams = &stackParams{ }, corruptedLines: []*regexp.Regexp{ // Fault injection stacks are frequently intermixed with crash reports. - compile(`^ should_fail\+0x`), - compile(`^ should_failslab\+0x`), + compile(`^ should_fail(\.[a-z]+\.[0-9]+)?\+0x`), + compile(`^ should_failslab(\.[a-z]+\.[0-9]+)?\+0x`), }, } -- cgit mrf-deployment