]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: reenable TestStackGrowth on 32-bit systems
authorRuss Cox <rsc@golang.org>
Tue, 16 Sep 2014 21:46:25 +0000 (17:46 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 16 Sep 2014 21:46:25 +0000 (17:46 -0400)
If this needs to be turned back off, it should be done
just before the '// in finalizer' comment, not at the top
of the function.

GC is more precise now than it was (the only imprecise
stuff left is some global variables), so maybe the finalizer
test will work now on 32-bit systems.

LGTM=khr
R=khr
CC=golang-codereviews
https://golang.org/cl/144030043

src/runtime/stack_test.go

index 3a0802a1c2e29396815be9416dc1bc2c96a9747f..652c72eeed11a4c476e9a964c1b1076f1d136ed4 100644 (file)
@@ -71,10 +71,6 @@ func TestStackMem(t *testing.T) {
 
 // Test stack growing in different contexts.
 func TestStackGrowth(t *testing.T) {
-       switch GOARCH {
-       case "386", "arm":
-               t.Skipf("skipping test on %q; see issue 8083", GOARCH)
-       }
        t.Parallel()
        var wg sync.WaitGroup