aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2020-02-22 10:06:14 +0100
committerKamil Rytarowski <n54@gmx.com>2020-02-22 10:06:14 +0100
commit2c36e7a75f8689b3da20e1a81a2ee5391f3af6e5 (patch)
tree661ba7f4917c301d5dc1ec1b44b20f943125d3f4 /pkg
parent775a8882a6f34f173b87809860eb74a943b4e5c5 (diff)
pkg/report: Improve parsing of the UBSan reports
Diffstat (limited to 'pkg')
-rw-r--r--pkg/report/netbsd.go5
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{},
},