aboutsummaryrefslogtreecommitdiff
path: root/test/nosplit.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-12-05 19:50:09 -0500
committerRuss Cox <rsc@golang.org>2014-12-05 19:50:09 -0500
commitdb406241107353323b5cf484d6abd05c4722a104 (patch)
treec09a318f25cee9dfa4eadc07cc7edd28a52c9775 /test/nosplit.go
parentfa6c54953c756c461073119f02e70930c753bac1 (diff)
downloadgo-db406241107353323b5cf484d6abd05c4722a104.tar.gz
go-db406241107353323b5cf484d6abd05c4722a104.zip
[dev.garbage] runtime: raise StackGuard limit for Windows (again)
640 bytes ought to be enough for anybody. We'll bring this back down before Go 1.5. That's issue 9214. TBR=rlh CC=golang-codereviews https://golang.org/cl/188730043
Diffstat (limited to 'test/nosplit.go')
-rw-r--r--test/nosplit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nosplit.go b/test/nosplit.go
index 3a63e8731d..799f2c533a 100644
--- a/test/nosplit.go
+++ b/test/nosplit.go
@@ -268,11 +268,11 @@ TestCases:
name := m[1]
size, _ := strconv.Atoi(m[2])
- // The limit was originally 128 but is now 384.
+ // The limit was originally 128 but is now 512.
// Instead of rewriting the test cases above, adjust
// the first stack frame to use up the extra 32 bytes.
if i == 0 {
- size += 384 - 128
+ size += 512 - 128
}
if size%ptrSize == 4 {