diff options
| author | Taras Madan <tarasmadan@google.com> | 2022-03-16 15:34:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-16 15:34:04 +0100 |
| commit | dfa9a8ed6b12b102fe3625ca8fc786aa86d54a5a (patch) | |
| tree | 0fe8bc242c79504af94268583c4808fa65e67198 /pkg/instance/instance.go | |
| parent | 46cc3b2193a3be0e0043d9cb98af1121aeebf09d (diff) | |
syz-verifier: don't use -collide in the runner (#3032)
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 68920577b..f8e39e589 100644 --- a/pkg/instance/instance.go +++ b/pkg/instance/instance.go @@ -506,7 +506,7 @@ var MakeBin = func() string { return "make" }() -func RunnerCmd(prog, fwdAddr, os, arch string, poolIdx, vmIdx int, collide, threaded, newEnv bool) string { +func RunnerCmd(prog, fwdAddr, os, arch string, poolIdx, vmIdx int, threaded, newEnv bool) string { return fmt.Sprintf("%s -addr=%s -os=%s -arch=%s -pool=%d -vm=%d "+ - "-collide=%t -threaded=%t -new-env=%t", prog, fwdAddr, os, arch, poolIdx, vmIdx, collide, threaded, newEnv) + "-threaded=%t -new-env=%t", prog, fwdAddr, os, arch, poolIdx, vmIdx, threaded, newEnv) } |
