diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-06-22 20:01:10 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-06-22 20:01:10 +0200 |
| commit | cb93a59bbf1d3db1aa49e2cfb1bbabdca2f63e94 (patch) | |
| tree | b5cbd6adeb000fda47fc7fe41e96e27bebd8c4fa /pkg/report/gvisor.go | |
| parent | bf0a1af0cb1b62ec9bd0c6a11544d7f2d76ceee7 (diff) | |
pkg/report: fix gvisor segv reports
Diffstat (limited to 'pkg/report/gvisor.go')
| -rw-r--r-- | pkg/report/gvisor.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pkg/report/gvisor.go b/pkg/report/gvisor.go index f690db285..488a40dad 100644 --- a/pkg/report/gvisor.go +++ b/pkg/report/gvisor.go @@ -150,22 +150,22 @@ var gvisorOopses = []*oops{ []*regexp.Regexp{}, }, &oops{ - []byte("signal SIGSEGV"), + []byte("SIGSEGV:"), []oopsFormat{ { - title: compile("signal SIGSEGV(.*)"), - fmt: "signal SIGSEGV%[1]v", + title: compile("SIGSEGV:(.*)"), + fmt: "SIGSEGV:%[1]v", noStackTrace: true, }, }, []*regexp.Regexp{}, }, &oops{ - []byte("signal SIGBUS"), + []byte("SIGBUS:"), []oopsFormat{ { - title: compile("signal SIGBUS(.*)"), - fmt: "signal SIGBUS%[1]v", + title: compile("SIGBUS:(.*)"), + fmt: "SIGBUS:%[1]v", noStackTrace: true, }, }, |
