commit | 4f7fd3cb7ff2f395668319d0f00792abb365a056 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Sat Apr 23 10:03:51 2011 -0400 |
committer | Russ Cox <rsc@golang.org> | Sat Apr 23 10:03:51 2011 -0400 |
tree | d10710fd115195bbb88475ef8e89607c3cd02b78 | |
parent | 14531fbaa5390a7057d35e9300ae5dbb4d736ca2 [diff] [blame] |
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 5caaf69..a15b2d8 100644 --- a/src/pkg/runtime/proc_test.go +++ b/src/pkg/runtime/proc_test.go
@@ -20,6 +20,10 @@ } 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() {