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