From 1dff53dc25a42aeeca592d5701a6740f3144211d Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Thu, 3 Jul 2025 12:29:03 +0200 Subject: 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. --- pkg/vcs/linux_configs_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/vcs/linux_configs_test.go') 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") }, -- cgit mrf-deployment