Commit d29f72f4 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

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 <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarMinux Ma <minux@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 93726522
...@@ -153,7 +153,7 @@ func (t *tester) run() { ...@@ -153,7 +153,7 @@ func (t *tester) run() {
t.timeoutScale = 1 t.timeoutScale = 1
switch t.goarch { switch t.goarch {
case "arm", "windows": case "arm":
t.timeoutScale = 2 t.timeoutScale = 2
case "mips", "mipsle", "mips64", "mips64le": case "mips", "mipsle", "mips64", "mips64le":
t.timeoutScale = 4 t.timeoutScale = 4
......
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