diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2026-01-02 17:10:52 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2026-01-09 12:51:45 +0000 |
| commit | e0566560dc462314ce89d4ddf374ecbb48d996ae (patch) | |
| tree | d9d92f35f84e819eef73ba49bec4a7aca30f9a93 | |
| parent | 4b9e0bf8cad5aba3bbba29c7abd9fb1b643eea02 (diff) | |
pkg/aflow/flow: add package
| -rw-r--r-- | pkg/aflow/flow/flows.go | 9 | ||||
| -rw-r--r-- | pkg/aflow/flow/flows_test.go | 6 |
2 files changed, 15 insertions, 0 deletions
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. |
