From 7c7d22ac5f29c610d6e0f781370c3e44c8443f69 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Thu, 29 Aug 2013 11:42:18 +1000 Subject: [PATCH] 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 --- src/pkg/runtime/parfor_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/pkg/runtime/parfor_test.go b/src/pkg/runtime/parfor_test.go index 4c69a68ceea..de64285b8a8 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