diff options
| author | Kamil Rytarowski <n54@gmx.com> | 2020-02-22 10:06:14 +0100 |
|---|---|---|
| committer | Kamil Rytarowski <n54@gmx.com> | 2020-02-22 10:06:14 +0100 |
| commit | 2c36e7a75f8689b3da20e1a81a2ee5391f3af6e5 (patch) | |
| tree | 661ba7f4917c301d5dc1ec1b44b20f943125d3f4 /pkg | |
| parent | 775a8882a6f34f173b87809860eb74a943b4e5c5 (diff) | |
pkg/report: Improve parsing of the UBSan reports
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/report/netbsd.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/report/netbsd.go b/pkg/report/netbsd.go index 69287ed58..50fcac4fc 100644 --- a/pkg/report/netbsd.go +++ b/pkg/report/netbsd.go @@ -180,6 +180,11 @@ var netbsdOopses = append([]*oops{ report: compile(`MSan: Uninitialized (?:.*\n)+(?:kmsan|__msan).*\n(.*)\(`), fmt: "MSan: Uninitialized Memory in %[1]v", }, + { + title: compile("UBSan: Undefined Behavior"), + report: compile(`UBSan: Undefined Behavior (?:.*\n)+__ubsan.*\n(.*)\(`), + fmt: "UBSan: Undefined Behavior in %[1]v", + }, }, []*regexp.Regexp{}, }, |
