Commit 4f7fd3cb authored by Russ Cox's avatar Russ Cox

runtime: disable long test (fix arm build)

TBR=r
CC=golang-dev
https://golang.org/cl/4449051
parent 14531fba
......@@ -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() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment