aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Cheney <dave@cheney.net>2014-05-25 08:38:59 +1000
committerDave Cheney <dave@cheney.net>2014-05-25 08:38:59 +1000
commit8a2fb87b996a3c4198aa8d9505fd77e560df0bbc (patch)
treee58b5150a518df4c6c475be6b3707702e9f9346f
parent4b3019b17ce8fcf0b9fab916897aaee9b24ce7fc (diff)
downloadgo-8a2fb87b996a3c4198aa8d9505fd77e560df0bbc.tar.gz
go-8a2fb87b996a3c4198aa8d9505fd77e560df0bbc.zip
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
-rw-r--r--src/pkg/runtime/stack_test.go4
1 files changed, 4 insertions, 0 deletions
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