diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-08-11 16:25:44 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-08-12 13:49:42 +0000 |
| commit | 6c0b41a01e303797e859c01e425dc47aafe4cf45 (patch) | |
| tree | 7b0fc00730d66758aa799e7aa56f0145b0c922f5 /syz-cluster/workflow | |
| parent | ada7557073de86aa26dc6304bceeae76f212486a (diff) | |
syz-cluster: refactor fuzz config structures
Keep the fuzz-step parameters in a separate structure to minimize the
field duplication.
It will also facilitate the reuse of the same syzkaller config in
several fuzzing configurations.
Diffstat (limited to 'syz-cluster/workflow')
| -rw-r--r-- | syz-cluster/workflow/triage-step/main.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/syz-cluster/workflow/triage-step/main.go b/syz-cluster/workflow/triage-step/main.go index 58464ad41..c0cfda3b4 100644 --- a/syz-cluster/workflow/triage-step/main.go +++ b/syz-cluster/workflow/triage-step/main.go @@ -119,10 +119,9 @@ func getVerdict(ctx context.Context, tracer debugtracer.DebugTracer, client *api } triageResult = &api.TriageResult{ Fuzz: &api.FuzzTask{ - Base: base, - Patched: base, - Config: fuzzConfig.Name, - CorpusURL: fuzzConfig.CorpusURL, + Base: base, + Patched: base, + FuzzConfig: fuzzConfig.FuzzConfig, }, } triageResult.Fuzz.Patched.SeriesID = series.ID |
