summaryrefslogtreecommitdiff
path: root/test/nilptr2.go
diff options
context:
space:
mode:
authorDmitriy Vyukov <dvyukov@google.com>2013-08-16 21:14:38 +0400
committerDmitriy Vyukov <dvyukov@google.com>2013-08-16 21:14:38 +0400
commit82befcf13da3326019797b8b7381d14fa734c5c3 (patch)
tree743b686464fe905b64b68397316cf502a96d025d /test/nilptr2.go
parentf04381992877ce73f4061e59beeaef7c83b25e8a (diff)
downloadgo-82befcf13da3326019797b8b7381d14fa734c5c3.tar.gz
test: say that nilptr2.go requires 256+MB stack
Fixes issue 6161. R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/13059043
Diffstat (limited to 'test/nilptr2.go')
-rw-r--r--test/nilptr2.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/nilptr2.go b/test/nilptr2.go
index 3d9ca0a7a..57a5f8068 100644
--- a/test/nilptr2.go
+++ b/test/nilptr2.go
@@ -87,8 +87,8 @@ var tests = []struct{
{"&bigstructp.x[i]", func() { println(&bigstructp.x[i]) }},
{"bigstructp.x[9]", func() { println(bigstructp.x[9]) }},
{"&bigstructp.x[9]", func() { println(&bigstructp.x[9]) }},
- {"bigstructp.x[200<<20]", func() { println(bigstructp.x[200<<20]) }},
- {"&bigstructp.x[200<<20]", func() { println(&bigstructp.x[200<<20]) }},
+ {"bigstructp.x[100<<20]", func() { println(bigstructp.x[100<<20]) }},
+ {"&bigstructp.x[100<<20]", func() { println(&bigstructp.x[100<<20]) }},
{"bigstructp.l", func() { println(bigstructp.l) }},
{"&bigstructp.l", func() { println(&bigstructp.l) }},
{"m1.F()", func() { println(m1.F()) }},
@@ -109,7 +109,7 @@ type BigStruct struct {
i int
j float64
k string
- x [256<<20]byte
+ x [128<<20]byte
l []byte
}