1
0
mirror of https://github.com/golang/go synced 2024-11-21 21:34:40 -07:00

runtime: re-enable TestParForParallel

See how it flies. We'll disable it again if the underlying issue is not resolved.
See issue 4155 for details.

Fixes #4155.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/13368045
This commit is contained in:
Rob Pike 2013-08-29 11:42:18 +10:00
parent e4bb139e75
commit 7c7d22ac5f

View File

@ -102,11 +102,6 @@ func TestParForSetup(t *testing.T) {
// Test parallel parallelfor.
func TestParForParallel(t *testing.T) {
if GOARCH != "amd64" {
t.Log("temporarily disabled, see http://golang.org/issue/4155")
return
}
N := uint64(1e7)
if testing.Short() {
N /= 10