runtime: disable long test (fix arm build)

TBR=r
CC=golang-dev
https://golang.org/cl/4449051
This commit is contained in:
Russ Cox 2011-04-23 10:03:51 -04:00
parent 14531fbaa5
commit 4f7fd3cb7f

View File

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