aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/syz-runtest/runtest.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/syz-runtest/runtest.go b/tools/syz-runtest/runtest.go
index 2f32ca285..621c3e958 100644
--- a/tools/syz-runtest/runtest.go
+++ b/tools/syz-runtest/runtest.go
@@ -187,7 +187,9 @@ func (mgr *Manager) boot(name string, index int) (*report.Report, error) {
Debug: mgr.debug,
Test: false,
Runtest: true,
- Slowdown: mgr.cfg.Timeouts.Slowdown,
+ Optional: &instance.OptionalFuzzerArgs{
+ Slowdown: mgr.cfg.Timeouts.Slowdown,
+ },
}
cmd := instance.FuzzerCmd(args)
outc, errc, err := inst.Run(time.Hour, mgr.vmStop, cmd)