diff options
| author | Taras Madan <tarasmadan@google.com> | 2025-07-03 12:29:03 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2025-07-03 13:44:30 +0000 |
| commit | 1dff53dc25a42aeeca592d5701a6740f3144211d (patch) | |
| tree | 1dad5eb8b48f1b8daae4e2e59c3cabb9f2dec0e0 /pkg/vcs/linux_configs_test.go | |
| parent | a9cc82a1dd1c40e23a3f26a29f14b2d8f60c65e2 (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/linux_configs_test.go')
| -rw-r--r-- | pkg/vcs/linux_configs_test.go | 4 |
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") }, |
