diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-04-18 09:10:23 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-04-30 09:36:03 +0000 |
| commit | ff1693fc52bf20fb123b27fe87212ce216b0ef58 (patch) | |
| tree | dfe613da750ede323ad83342116ff38f98313170 /pkg/instance | |
| parent | d17f309a1444d697d42f0ef1af11b013a63f397e (diff) | |
syz-manager, syz-fuzzer: pass ExecOpts in exec requests
Move all ExecOpts logic from the fuzzer to the manager.
This makes the fuzzer simpler and will allow to vary
options across requests.
Diffstat (limited to 'pkg/instance')
| -rw-r--r-- | pkg/instance/instance.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/instance/instance.go b/pkg/instance/instance.go index 4c61b1d24..7f1ca4dbb 100644 --- a/pkg/instance/instance.go +++ b/pkg/instance/instance.go @@ -457,7 +457,6 @@ func (inst *inst) testRepro() ([]byte, error) { type OptionalFuzzerArgs struct { Slowdown int - RawCover bool SandboxArg int PprofPort int ResetAccState bool @@ -501,7 +500,6 @@ func FuzzerCmd(args *FuzzerCmdArgs) string { if args.Optional != nil { flags := []tool.Flag{ {Name: "slowdown", Value: fmt.Sprint(args.Optional.Slowdown)}, - {Name: "raw_cover", Value: fmt.Sprint(args.Optional.RawCover)}, {Name: "sandbox_arg", Value: fmt.Sprint(args.Optional.SandboxArg)}, {Name: "pprof_port", Value: fmt.Sprint(args.Optional.PprofPort)}, {Name: "reset_acc_state", Value: fmt.Sprint(args.Optional.ResetAccState)}, |
