Commit 8f9434b6 authored by Alex Brainman's avatar Alex Brainman

build: crash if test runs forever

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5604051
parent 7207898f
......@@ -38,15 +38,15 @@ fi
echo
echo '# Package tests'
time go test std -short
time go test std -short -timeout=120s
echo
echo '# runtime -cpu=1,2,4'
go test runtime -short -cpu=1,2,4
go test runtime -short -timeout=120s -cpu=1,2,4
echo
echo '# sync -cpu=10'
go test sync -short -cpu=10
go test sync -short -timeout=120s -cpu=10
echo
echo '# Build bootstrap scripts'
......
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