aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/repro/repro.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/repro/repro.go b/pkg/repro/repro.go
index 5f0947541..11c75af11 100644
--- a/pkg/repro/repro.go
+++ b/pkg/repro/repro.go
@@ -100,8 +100,8 @@ func prepareCtx(crashLog []byte, cfg *mgrconfig.Config, features flatrpc.Feature
crashExecutor = rep.Executor
}
testTimeouts := []time.Duration{
- 3 * cfg.Timeouts.Program, // to catch simpler crashes (i.e. no races and no hangs)
- 20 * cfg.Timeouts.Program,
+ max(30*time.Second, 3*cfg.Timeouts.Program), // to catch simpler crashes (i.e. no races and no hangs)
+ max(100*time.Second, 20*cfg.Timeouts.Program),
cfg.Timeouts.NoOutputRunningTime, // to catch "no output", races and hangs
}
switch {