mirror of
https://github.com/golang/go
synced 2024-11-22 04:14:42 -07:00
runtime: disable long test (fix arm build)
TBR=r CC=golang-dev https://golang.org/cl/4449051
This commit is contained in:
parent
14531fbaa5
commit
4f7fd3cb7f
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user