summaryrefslogtreecommitdiff
path: root/src/runtime/stack_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-16 17:46:25 -0400
committerRuss Cox <rsc@golang.org>2014-09-16 17:46:25 -0400
commitb0b7d10179b3a35061f02497138be563f56690c1 (patch)
tree7a823d3b3757904a829751a896031e27cbc659cb /src/runtime/stack_test.go
parent695376b3bde5d12818b2e8c6ecedafb9ae8ea15b (diff)
downloadgo-b0b7d10179b3a35061f02497138be563f56690c1.tar.gz
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://codereview.appspot.com/144030043
Diffstat (limited to 'src/runtime/stack_test.go')
-rw-r--r--src/runtime/stack_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/runtime/stack_test.go b/src/runtime/stack_test.go
index 3a0802a1c..652c72eee 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