Skip to content

Commit 3c586d4

Browse files
committed
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 <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 7e9d55e commit 3c586d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/dist/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ func (t *tester) registerStdTest(pkg string) {
308308
timeoutSec := 180
309309
for _, pkg := range stdMatches {
310310
if pkg == "cmd/go" {
311-
timeoutSec *= 2
311+
timeoutSec *= 3
312312
break
313313
}
314314
}

0 commit comments

Comments
 (0)