Increase allowed test runtimes (fixes #1049)

This commit is contained in:
Jakob Borg 2014-11-30 21:21:37 +01:00
parent 8bd52946b4
commit d669c07e8a
2 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ func setup() {
func test(pkg string) {
setBuildEnv()
runPrint("go", "test", "-short", "-timeout", "10s", pkg)
runPrint("go", "test", "-short", "-timeout", "60s", pkg)
}
func install(pkg string, tags []string) {

View File

@ -128,7 +128,7 @@ case "${1:-default}" in
&& go run build.go -race \
&& export GOPATH=$(pwd)/Godeps/_workspace:$GOPATH \
&& cd test \
&& go test -tags integration -v -timeout 30m -short'
&& go test -tags integration -v -timeout 60m -short'
;;
*)