From 343f8ef4bca603a6a280812c4c6597825fcc63c5 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 18 Jul 2025 15:04:58 +0200 Subject: syz-cluster: remember LKML series tags Sometimes the patch series directly hint at the kernel tree they should be applied to. Extract and remember this information. --- syz-cluster/pkg/controller/api_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'syz-cluster/pkg/controller/api_test.go') diff --git a/syz-cluster/pkg/controller/api_test.go b/syz-cluster/pkg/controller/api_test.go index 9e709e089..1c1c8de9f 100644 --- a/syz-cluster/pkg/controller/api_test.go +++ b/syz-cluster/pkg/controller/api_test.go @@ -5,11 +5,12 @@ package controller import ( "bytes" + "testing" + "time" + "github.com/google/syzkaller/syz-cluster/pkg/api" "github.com/google/syzkaller/syz-cluster/pkg/app" "github.com/stretchr/testify/assert" - "testing" - "time" ) func TestAPIGetSeries(t *testing.T) { @@ -108,6 +109,7 @@ var testSeries = &api.Series{ Version: 2, PublishedAt: time.Date(2020, time.January, 1, 3, 0, 0, 0, time.UTC), Cc: []string{"email"}, + SubjectTags: []string{"tag"}, Patches: []api.SeriesPatch{ { Seq: 1, -- cgit mrf-deployment