]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: re-enable TestParForParallel
authorRob Pike <r@golang.org>
Thu, 29 Aug 2013 01:42:18 +0000 (11:42 +1000)
committerRob Pike <r@golang.org>
Thu, 29 Aug 2013 01:42:18 +0000 (11:42 +1000)
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

index 4c69a68ceeaa042fc842b1e6488aae94065cb9ab..de64285b8a8e532f461ddc540bef0653a7078da4 100644 (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