Commit 8a2fb87b authored by Dave Cheney's avatar Dave Cheney

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
parent 4b3019b1
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment