aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-07-03 12:29:03 +0200
committerTaras Madan <tarasmadan@google.com>2025-07-03 13:44:30 +0000
commit1dff53dc25a42aeeca592d5701a6740f3144211d (patch)
tree1dad5eb8b48f1b8daae4e2e59c3cabb9f2dec0e0 /pkg/vcs
parenta9cc82a1dd1c40e23a3f26a29f14b2d8f60c65e2 (diff)
pkg/report: use crash.KASANUnknown instead of crash.KASANOther
What we need is the category for "matched unknown KASAN bug". This king on bugs should be recategorised. The final goal is to keep this category empty.
Diffstat (limited to 'pkg/vcs')
-rw-r--r--pkg/vcs/linux_configs_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/vcs/linux_configs_test.go b/pkg/vcs/linux_configs_test.go
index c5ccb9ed3..6addcbb33 100644
--- a/pkg/vcs/linux_configs_test.go
+++ b/pkg/vcs/linux_configs_test.go
@@ -31,14 +31,14 @@ func TestDropLinuxSanitizerConfigs(t *testing.T) {
},
{
name: "kasan bug",
- types: []crash.Type{crash.KASANOther},
+ types: []crash.Type{crash.KASANRead},
test: func(t *testing.T, cf *kconfig.ConfigFile) {
assertConfigs(t, cf, "KASAN")
},
},
{
name: "warning & kasan bug",
- types: []crash.Type{crash.Warning, crash.KASANOther},
+ types: []crash.Type{crash.Warning, crash.KASANRead},
test: func(t *testing.T, cf *kconfig.ConfigFile) {
assertConfigs(t, cf, "KASAN", "BUG")
},