aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2025-04-15 15:40:27 +0200
committerAleksandr Nogikh <nogikh@google.com>2025-04-15 15:55:41 +0000
commit72b08b89bcde266d8ec4abc77b01fcc0cc95bea0 (patch)
treeee5a42e0a60dbd7753aa272a83b77e52db6a8dba /tools
parent2197b25c207a81e893d3ac531c1bf215d8ee442d (diff)
pkg/manager: provide diff fuzzer state dumps
Make the fuzzing step of syz-cluster create the manager.DiffStore object explicitly and dump its state to the logs after finishing the fuzzing session.
Diffstat (limited to 'tools')
-rw-r--r--tools/syz-diff/diff.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/syz-diff/diff.go b/tools/syz-diff/diff.go
index f28421dc9..c77728d4a 100644
--- a/tools/syz-diff/diff.go
+++ b/tools/syz-diff/diff.go
@@ -48,8 +48,8 @@ func main() {
ctx := vm.ShutdownCtx()
err = manager.RunDiffFuzzer(ctx, baseCfg, newCfg, manager.DiffFuzzerConfig{
- ArtifactsDir: newCfg.Workdir,
- Debug: *flagDebug,
+ Store: &manager.DiffFuzzerStore{BasePath: newCfg.Workdir},
+ Debug: *flagDebug,
})
if err != nil {
log.Fatal(err)