aboutsummaryrefslogtreecommitdiff
path: root/src/run.rc
diff options
context:
space:
mode:
authorDavid du Colombier <0intro@gmail.com>2015-01-07 23:32:34 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2015-01-07 22:58:38 +0000
commit8c69ce0b90d15e35d6f03f6af530fd6af47e276c (patch)
tree32a2260422bec16810afce6a12e4c54e5ce5ae12 /src/run.rc
parentb2aab72d9a7d3e82904be25c86ff24dc09847fc8 (diff)
downloadgo-8c69ce0b90d15e35d6f03f6af530fd6af47e276c.tar.gz
go-8c69ce0b90d15e35d6f03f6af530fd6af47e276c.zip
build: increase timeout in run.rc
Increasing the timeout prevents the runtime test to time out on the Plan 9 instances running on GCE. Update golang/go#9491 Change-Id: Id9c2b0c4e59b103608565168655799b353afcd77 Reviewed-on: https://go-review.googlesource.com/2462 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/run.rc')
-rwxr-xr-xsrc/run.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/run.rc b/src/run.rc
index b0995d8787..c0c66be359 100755
--- a/src/run.rc
+++ b/src/run.rc
@@ -29,13 +29,13 @@ if not {
GOROOT_FINAL = ()
echo '# Testing packages.'
-time go test std -short -timeout 120s
+time go test std -short -timeout 240s
echo
# We set GOMAXPROCS=2 in addition to -cpu=1,2,4 in order to test runtime bootstrap code,
# creation of first goroutines and first garbage collections in the parallel setting.
echo '# GOMAXPROCS=2 runtime -cpu=1,2,4'
-GOMAXPROCS=2 go test runtime -short -timeout 240s -cpu 1,2,4
+GOMAXPROCS=2 go test runtime -short -timeout 480s -cpu 1,2,4
echo
echo '# sync -cpu=10'