From 4f7fd3cb7ff2f395668319d0f00792abb365a056 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sat, 23 Apr 2011 10:03:51 -0400 Subject: [PATCH] runtime: disable long test (fix arm build) TBR=r CC=golang-dev https://golang.org/cl/4449051 --- src/pkg/runtime/proc_test.go | 4 ++++ 1 file changed, 4 insertions(+) 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() {