commit | 1184407f2a2955fe2befd22896ee9bf49cd0defe | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Mon Jul 01 18:10:03 2013 -0400 |
committer | Russ Cox <rsc@golang.org> | Mon Jul 01 18:10:03 2013 -0400 |
tree | 255c7e70d5c3f0eaefdff03b9519734a7d815017 | |
parent | 08e064135dfd6ec5cd09ac07134a9817425aac06 [diff] [blame] |
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 605f747..7e551d2 100644 --- a/src/pkg/runtime/proc_test.go +++ b/src/pkg/runtime/proc_test.go
@@ -169,6 +169,7 @@ } 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))