mirror of
https://github.com/golang/go
synced 2024-11-19 17:44:43 -07: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:
parent
4b3019b17c
commit
8a2fb87b99
@ -123,6 +123,10 @@ func TestStackMem(t *testing.T) {
|
|||||||
|
|
||||||
// Test stack growing in different contexts.
|
// Test stack growing in different contexts.
|
||||||
func TestStackGrowth(t *testing.T) {
|
func TestStackGrowth(t *testing.T) {
|
||||||
|
switch GOARCH {
|
||||||
|
case "386", "arm":
|
||||||
|
t.Skipf("skipping test on %q; see issue 8083", GOARCH)
|
||||||
|
}
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user