From 8a2fb87b996a3c4198aa8d9505fd77e560df0bbc Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Sun, 25 May 2014 08:38:59 +1000 Subject: [PATCH] runtime: skip stack growth test on 32bit platforms Update #8083 See discussion in https://groups.google.com/forum/#!topic/golang-dev/dh6Ra_xJomc LGTM=khr R=golang-codereviews, gobot, khr CC=golang-codereviews https://golang.org/cl/99440048 --- src/pkg/runtime/stack_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pkg/runtime/stack_test.go b/src/pkg/runtime/stack_test.go index f3fba6a31c..f0c599ac5d 100644 --- a/src/pkg/runtime/stack_test.go +++ b/src/pkg/runtime/stack_test.go @@ -123,6 +123,10 @@ 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