aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-06-29 07:13:19 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-06-29 07:13:19 +0200
commit0375051c1460f374bc036ac17e8fec15dece5e8e (patch)
tree34ab714d35191c16f2b5bc84b70ede421a595b21 /pkg
parenta2cdad9d42694059bd75f809d297ed9bf853da12 (diff)
pkg/host: increase executor setup timeout
For context see: https://groups.google.com/d/msg/syzkaller/7yOtIJGW2sw/Siw8mtu0CAAJ
Diffstat (limited to 'pkg')
-rw-r--r--pkg/host/features.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/host/features.go b/pkg/host/features.go
index dac743fb5..10137f2d9 100644
--- a/pkg/host/features.go
+++ b/pkg/host/features.go
@@ -107,6 +107,6 @@ func Setup(target *prog.Target, features *Features, featureFlags csource.Feature
if features[FeatureUSBEmulation].Enabled {
args = append(args, "usb")
}
- _, err := osutil.RunCmd(time.Minute, "", executor, args...)
+ _, err := osutil.RunCmd(5*time.Minute, "", executor, args...)
return err
}