From: Russ Cox Date: Mon, 1 Jul 2013 22:10:03 +0000 (-0400) Subject: runtime: disable preemption test (fix build) X-Git-Tag: go1.2rc2~1130 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1184407f2a2955fe2befd22896ee9bf49cd0defe;p=gostls13.git runtime: disable preemption test (fix build) TBR=golang-dev CC=golang-dev https://golang.org/cl/10849043 --- diff --git a/src/pkg/runtime/proc_test.go b/src/pkg/runtime/proc_test.go index 605f747cbe..7e551d2fd1 100644 --- a/src/pkg/runtime/proc_test.go +++ b/src/pkg/runtime/proc_test.go @@ -169,6 +169,7 @@ var preempt = func() int { } func TestPreemptionGC(t *testing.T) { + t.Skip("preemption is disabled") // Test that pending GC preempts running goroutines. const P = 5 defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(P + 1))