From 3c586d4483b0cf59cd57adec150317c497065845 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 25 Jun 2018 20:24:37 +0000 Subject: [PATCH] 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 Reviewed-by: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- src/cmd/dist/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 756f1ddd4e..5be4bcfa65 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -308,7 +308,7 @@ func (t *tester) registerStdTest(pkg string) { timeoutSec := 180 for _, pkg := range stdMatches { if pkg == "cmd/go" { - timeoutSec *= 2 + timeoutSec *= 3 break } }