From 1a0818a40de3c2e7daa9d22591fb961602c7323b Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 20 Jul 2015 10:18:26 -0700 Subject: [PATCH] cmd/dist: increase timeout for standard tests The cmd/go tests run too long on a Raspberry Pi. I've cut times as much as I can see without more serious steps like not running tests. Fixes #11779. Change-Id: Ice5da052902decea2e6ac32d0f2ce084c39ea1ab Reviewed-on: https://go-review.googlesource.com/12368 Run-TryBot: Ian Lance Taylor 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 0f2c9a6f6a..8701d34709 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -259,7 +259,7 @@ func (t *tester) registerStdTest(pkg string) { "test", "-short", t.tags(), - t.timeout(120), + t.timeout(180), "-gcflags=" + os.Getenv("GO_GCFLAGS"), } if t.race { -- 2.50.0