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) {