From: Russ Cox Date: Sat, 23 Apr 2011 14:03:51 +0000 (-0400) Subject: runtime: disable long test (fix arm build) X-Git-Tag: weekly.2011-04-27~56 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4f7fd3cb7ff2f395668319d0f00792abb365a056;p=gostls13.git runtime: disable long test (fix arm build) TBR=r CC=golang-dev https://golang.org/cl/4449051 --- diff --git a/src/pkg/runtime/proc_test.go b/src/pkg/runtime/proc_test.go index 5caaf69cd6..a15b2d80a4 100644 --- a/src/pkg/runtime/proc_test.go +++ b/src/pkg/runtime/proc_test.go @@ -20,6 +20,10 @@ func perpetuumMobile() { } func TestStopTheWorldDeadlock(t *testing.T) { + if testing.Short() { + t.Logf("skipping during short test") + return + } runtime.GOMAXPROCS(3) compl := make(chan int, 1) go func() {