diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-17 18:07:51 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-21 09:46:36 +0000 |
| commit | 780a5444026e461c8be27b8615a81360310582e7 (patch) | |
| tree | 0a508a764f8a9e0cdc08ceac73f120c0f026e34c /pkg/instance/instance.go | |
| parent | 1d3c25e7679384c386e7710ea11e364ce9f9e028 (diff) | |
pkg/ipc: remove ExecOpts
Switch to flatrpc.ExecOpts.
Diffstat (limited to 'pkg/instance/instance.go')
| -rw-r--r-- | pkg/instance/instance.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/instance/instance.go b/pkg/instance/instance.go index d47c093ec..4e5f95e2d 100644 --- a/pkg/instance/instance.go +++ b/pkg/instance/instance.go @@ -457,7 +457,7 @@ func (inst *inst) testRepro() ([]byte, error) { type OptionalFuzzerArgs struct { Slowdown int - SandboxArg int + SandboxArg int64 PprofPort int } @@ -504,7 +504,7 @@ func FuzzerCmd(args *FuzzerCmdArgs) string { args.Procs, args.Cover, args.Debug, args.Test, verbosityArg, optionalArg) } -func OldFuzzerCmd(fuzzer, executor, name, OS, arch, fwdAddr, sandbox string, sandboxArg, procs int, +func OldFuzzerCmd(fuzzer, executor, name, OS, arch, fwdAddr, sandbox string, sandboxArg int64, procs int, cover, test, optionalFlags bool, slowdown int) string { var optional *OptionalFuzzerArgs if optionalFlags { |
