1
0
mirror of https://github.com/golang/go synced 2024-10-02 10:28:34 -06:00

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
This commit is contained in:
Dave Cheney 2014-05-25 08:38:59 +10:00
parent 4b3019b17c
commit 8a2fb87b99

View File

@ -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