From 1184407f2a2955fe2befd22896ee9bf49cd0defe Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 1 Jul 2013 18:10:03 -0400 Subject: [PATCH] runtime: disable preemption test (fix build) TBR=golang-dev CC=golang-dev https://golang.org/cl/10849043 --- src/pkg/runtime/proc_test.go | 1 + 1 file changed, 1 insertion(+) 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)) -- 2.48.1