From e0566560dc462314ce89d4ddf374ecbb48d996ae Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 2 Jan 2026 17:10:52 +0100 Subject: pkg/aflow/flow: add package --- pkg/aflow/flow/flows.go | 9 +++++++++ pkg/aflow/flow/flows_test.go | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 pkg/aflow/flow/flows.go create mode 100644 pkg/aflow/flow/flows_test.go diff --git a/pkg/aflow/flow/flows.go b/pkg/aflow/flow/flows.go new file mode 100644 index 000000000..ef2d4697e --- /dev/null +++ b/pkg/aflow/flow/flows.go @@ -0,0 +1,9 @@ +// Copyright 2025 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +package flow + +import ( + _ "github.com/google/syzkaller/pkg/aflow/flow/assessment" + _ "github.com/google/syzkaller/pkg/aflow/flow/patching" +) diff --git a/pkg/aflow/flow/flows_test.go b/pkg/aflow/flow/flows_test.go new file mode 100644 index 000000000..3c01596b5 --- /dev/null +++ b/pkg/aflow/flow/flows_test.go @@ -0,0 +1,6 @@ +// Copyright 2025 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +package flow + +// An empty test that runs registration and verification of all registered workflows via init functions. -- cgit mrf-deployment