diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-04-24 09:59:10 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-04-24 13:23:01 +0200 |
| commit | 33424b08c3d32341c2ace0f1076053cf579a722b (patch) | |
| tree | 29987588c6ffb4761507e4295bd2636dfa703131 /pkg/report/linux.go | |
| parent | 02bbd80e7c322d5a5641d3c45fc5803f18cdf5e6 (diff) | |
pkg/report: more corrupted report detection
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 4 |
1 files changed, 2 insertions, 2 deletions
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`), }, } |
