From: Brad Fitzpatrick Date: Fri, 2 Dec 2016 23:30:09 +0000 (+0000) Subject: cmd/dist: remove special test timeout scale for Windows X-Git-Tag: go1.8beta2~99 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d29f72f4728b75314b72337e9768c73eb22338e0;p=gostls13.git cmd/dist: remove special test timeout scale for Windows In https://golang.org/cl/33804 I screwed up a GOOS == "windows" check into a bogus comparison against GOARCH == "windows". But turns out the builders are happy anyway, so remove the windows special case. Change-Id: I820b1d49d5b3e8cbffe4516fc39f514326dc39f8 Reviewed-on: https://go-review.googlesource.com/33893 Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot Reviewed-by: Minux Ma Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index c39646992e..7e6e979fad 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -153,7 +153,7 @@ func (t *tester) run() { t.timeoutScale = 1 switch t.goarch { - case "arm", "windows": + case "arm": t.timeoutScale = 2 case "mips", "mipsle", "mips64", "mips64le": t.timeoutScale = 4