From 4bf4d9f86ebeb5711464bd98b6823e3e2cca7bb7 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 16 Sep 2014 17:46:25 -0400 Subject: [PATCH] runtime: reenable TestStackGrowth on 32-bit systems 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 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/runtime/stack_test.go b/src/runtime/stack_test.go index 3a0802a1c2..652c72eeed 100644 --- a/src/runtime/stack_test.go +++ b/src/runtime/stack_test.go @@ -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 -- 2.50.0