aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2017-12-15 16:34:39 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2017-12-15 18:40:06 +0000
commitf2ddcca22467c00c058f352aa51e6bbcfb530de3 (patch)
treee0bb40cbcad2ccfc9ad65619ca3e9d52951f8975 /src
parentfdecaa837cf94f6679a7683c1929e3b22ab1e07d (diff)
downloadgo-f2ddcca22467c00c058f352aa51e6bbcfb530de3.tar.xz
cmd/dist: let misc/cgo/testshared test timeout be scaled by slow builder
The default test timeout is 10 minutes if unspecified. The misc/cgo/testshared test didn't use t.timeout(sec), which respects GO_TEST_TIMEOUT_SCALE, so all builders got the default 10 minute timeout. arm5 needs more, though, so specify 10 minutes explicitly, which will then get scaled accordingly on slower builders. Change-Id: I19ecfdcd9c865f2b69524484415b8fbd2852718e Reviewed-on: https://go-review.googlesource.com/84315 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Andrew Bonventre <andybons@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/cmd/dist/test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index f040d4e3f6..5842a98233 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -648,7 +648,7 @@ func (t *tester) registerTests() {
t.registerHostTest("testcshared", "../misc/cgo/testcshared", "misc/cgo/testcshared", "cshared_test.go")
}
if t.supportedBuildmode("shared") {
- t.registerTest("testshared", "../misc/cgo/testshared", t.goTest())
+ t.registerTest("testshared", "../misc/cgo/testshared", t.goTest(), t.timeout(600))
}
if t.supportedBuildmode("plugin") {
t.registerTest("testplugin", "../misc/cgo/testplugin", "./test.bash")