From: Matthew Dempsky Date: Sat, 15 Aug 2020 04:30:04 +0000 (-0700) Subject: test: bump array size in fixedbugs/issue39292.go X-Git-Tag: go1.16beta1~1352 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=69d34e2c6965f70fe1ead3e7e8ab45ada3267ebc;p=gostls13.git test: bump array size in fixedbugs/issue39292.go The previous array length was large enough to exceed maxImplicitStackSize on 64-bit architectures, but not on 32-bit architectures. Fixes #40808. Change-Id: I69e9abb447454b2e7875ba503a0cb772e965ae31 Reviewed-on: https://go-review.googlesource.com/c/go/+/248680 Run-TryBot: Matthew Dempsky Reviewed-by: Cuong Manh Le TryBot-Result: Gobot Gobot --- diff --git a/test/fixedbugs/issue39292.go b/test/fixedbugs/issue39292.go index 5d6595c234..1be88653e9 100644 --- a/test/fixedbugs/issue39292.go +++ b/test/fixedbugs/issue39292.go @@ -6,7 +6,7 @@ package p -type t [10000]*int +type t [20000]*int func (t) f() { }