Commit 3c586d44 authored by Andrew's avatar Andrew Committed by Andrew Bonventre

cmd/dist: increase timeout scale to 3 for windows

cmd/go can sometimes take up to 400s on windows due
to various issues (disk I/O on builders being the
latest cause). Increase the timeout scale to account
for this.

Change-Id: I1fd4964472a70fb0f33cf6ed73298c034b9c1fb0
Reviewed-on: https://go-review.googlesource.com/120762
Run-TryBot: Andrew Bonventre <andybons@golang.org>
Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 7e9d55ee
...@@ -308,7 +308,7 @@ func (t *tester) registerStdTest(pkg string) { ...@@ -308,7 +308,7 @@ func (t *tester) registerStdTest(pkg string) {
timeoutSec := 180 timeoutSec := 180
for _, pkg := range stdMatches { for _, pkg := range stdMatches {
if pkg == "cmd/go" { if pkg == "cmd/go" {
timeoutSec *= 2 timeoutSec *= 3
break break
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment