From 8d41190df0b6184bac7d8b34765fc84395f27cf4 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 18 Jan 2023 16:22:07 +0100 Subject: pkg/subsystem/linux: keep one list for list-merged groups Otherwise we can get too many mailing lists at the same time. --- pkg/subsystem/linux/subsystems_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg/subsystem/linux/subsystems_test.go') diff --git a/pkg/subsystem/linux/subsystems_test.go b/pkg/subsystem/linux/subsystems_test.go index b4f0818ff..09d835e3f 100644 --- a/pkg/subsystem/linux/subsystems_test.go +++ b/pkg/subsystem/linux/subsystems_test.go @@ -75,7 +75,7 @@ func TestLinuxSubsystemPaths(t *testing.T) { // For the list of subsystems, see TestLinuxSubsystemsList. // Here we rely on the same ones. repo := prepareTestLinuxRepo(t, []byte(testMaintainers)) - subsystems, err := listFromRepoInner(repo, testRules) + subsystems, err := listFromRepoInner(repo, nil) if err != nil { t.Fatal(err) } @@ -106,6 +106,7 @@ func TestLinuxSubsystemPaths(t *testing.T) { list: []string{"kernel", "mm"}, }, { + // Shmem has no mailing list. path: `mm/shmem.c`, list: []string{"kernel", "mm"}, }, -- cgit mrf-deployment