]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: disable long test (fix arm build)
authorRuss Cox <rsc@golang.org>
Sat, 23 Apr 2011 14:03:51 +0000 (10:03 -0400)
committerRuss Cox <rsc@golang.org>
Sat, 23 Apr 2011 14:03:51 +0000 (10:03 -0400)
TBR=r
CC=golang-dev
https://golang.org/cl/4449051

src/pkg/runtime/proc_test.go

index 5caaf69cd68247779e11943435347eb01e44ea6f..a15b2d80a4e34c5660f24ff26f828281d9e085b2 100644 (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() {