aboutsummaryrefslogtreecommitdiffstats
path: root/syz-manager/manager.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-06-17 14:06:16 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-06-17 14:41:15 +0200
commit260cdaa2b2dcdca9cc9d84c1bc08d00d451c68cd (patch)
tree712379c5d9350f3d2925f6033559d9ae3e5fb3f1 /syz-manager/manager.go
parentd5406e5fba13419c4257957507518f67dcdda579 (diff)
syz-manager/mgrconfig: remove output param
It was useful only for vm/local which was removed. The param wasn't documented and if one tries to change it, it will break manager in obscure way (i.e. spurious "test machine is not executing programs" crashes).
Diffstat (limited to 'syz-manager/manager.go')
-rw-r--r--syz-manager/manager.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/syz-manager/manager.go b/syz-manager/manager.go
index 9ab0ce4f5..465cf7aad 100644
--- a/syz-manager/manager.go
+++ b/syz-manager/manager.go
@@ -478,8 +478,8 @@ func (mgr *Manager) runInstance(index int) (*Crash, error) {
start := time.Now()
atomic.AddUint32(&mgr.numFuzzing, 1)
defer atomic.AddUint32(&mgr.numFuzzing, ^uint32(0))
- cmd := fmt.Sprintf("%v -executor=%v -name=vm-%v -manager=%v -output=%v -procs=%v -leak=%v -cover=%v -sandbox=%v -debug=%v -v=%d",
- fuzzerBin, executorBin, index, fwdAddr, mgr.cfg.Output, procs, leak, mgr.cfg.Cover, mgr.cfg.Sandbox, *flagDebug, fuzzerV)
+ cmd := fmt.Sprintf("%v -executor=%v -name=vm-%v -manager=%v -procs=%v -leak=%v -cover=%v -sandbox=%v -debug=%v -v=%d",
+ fuzzerBin, executorBin, index, fwdAddr, procs, leak, mgr.cfg.Cover, mgr.cfg.Sandbox, *flagDebug, fuzzerV)
outc, errc, err := inst.Run(time.Hour, mgr.vmStop, cmd)
if err != nil {
return nil, fmt.Errorf("failed to run fuzzer: %v", err)