From: Rob Pike Date: Thu, 29 Aug 2013 01:42:18 +0000 (+1000) Subject: runtime: re-enable TestParForParallel X-Git-Tag: go1.2rc2~401 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7c7d22ac5f29c610d6e0f781370c3e44c8443f69;p=gostls13.git 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 --- diff --git a/src/pkg/runtime/parfor_test.go b/src/pkg/runtime/parfor_test.go index 4c69a68cee..de64285b8a 100644 --- a/src/pkg/runtime/parfor_test.go +++ b/src/pkg/runtime/parfor_test.go @@ -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