mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00: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
1 changed files with 4 additions and 0 deletions
|
|
@ -20,6 +20,10 @@ func perpetuumMobile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestStopTheWorldDeadlock(t *testing.T) {
|
func TestStopTheWorldDeadlock(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Logf("skipping during short test")
|
||||||
|
return
|
||||||
|
}
|
||||||
runtime.GOMAXPROCS(3)
|
runtime.GOMAXPROCS(3)
|
||||||
compl := make(chan int, 1)
|
compl := make(chan int, 1)
|
||||||
go func() {
|
go func() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue