diff options
| author | Taras Madan <tarasmadan@google.com> | 2025-07-02 17:03:02 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2025-07-03 08:51:28 +0000 |
| commit | 22d2aa64dae7c92bf2737c001e8a96146b8a693d (patch) | |
| tree | 6aa239f4d42b14f7d38ba278a205c275dee1655e /pkg/vcs | |
| parent | 115ceea74e11fcf2b7ad5717ef91980f501cc81b (diff) | |
pkg/report: split crash.KASAN into parts
We want to prioritize KASAN bugs differently.
Diffstat (limited to 'pkg/vcs')
| -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 93449ca8b..c5ccb9ed3 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.KASAN}, + types: []crash.Type{crash.KASANOther}, test: func(t *testing.T, cf *kconfig.ConfigFile) { assertConfigs(t, cf, "KASAN") }, }, { name: "warning & kasan bug", - types: []crash.Type{crash.Warning, crash.KASAN}, + types: []crash.Type{crash.Warning, crash.KASANOther}, test: func(t *testing.T, cf *kconfig.ConfigFile) { assertConfigs(t, cf, "KASAN", "BUG") }, |
