summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug273.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-05-01 13:15:42 -0700
committerRuss Cox <rsc@golang.org>2010-05-01 13:15:42 -0700
commit7f880650f76417b4010da786f4c82009a987d4ab (patch)
tree2ff37f89bce27884dc59c851f1d2e97977ef487d /test/fixedbugs/bug273.go
parent93076f9a25e6470ea07d6459abd122c60398a1ec (diff)
downloadgolang-7f880650f76417b4010da786f4c82009a987d4ab.tar.gz
gc: be pickier about slice, chan, array, and map sizes
Fixes issue 589. R=ken2 CC=golang-dev http://codereview.appspot.com/1032044
Diffstat (limited to 'test/fixedbugs/bug273.go')
-rw-r--r--test/fixedbugs/bug273.go95
1 files changed, 95 insertions, 0 deletions
diff --git a/test/fixedbugs/bug273.go b/test/fixedbugs/bug273.go
new file mode 100644
index 000000000..ff8f1c6af
--- /dev/null
+++ b/test/fixedbugs/bug273.go
@@ -0,0 +1,95 @@
+// $G $D/$F.go && $L $F.$A && ./$A.out
+
+// Copyright 2010 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// http://code.google.com/p/go/issues/detail?id=589
+
+package main
+
+import "unsafe"
+
+var bug = false
+
+var minus1 = -1
+var big int64 = 10 | 1<<32
+
+func shouldfail(f func(), desc string) {
+ defer func() { recover() }()
+ f()
+ if !bug {
+ println("BUG")
+ bug = true
+ }
+ println("didn't crash: ", desc)
+}
+
+func badlen() {
+ _ = make([]int, minus1)
+}
+
+func biglen() {
+ _ = make([]int, big)
+}
+
+func badcap() {
+ _ = make([]int, 10, minus1)
+}
+
+func badcap1() {
+ _ = make([]int, 10, 5)
+}
+
+func bigcap() {
+ _ = make([]int, 10, big)
+}
+
+const (
+ addrBits = 8*uint(unsafe.Sizeof((*byte)(nil)))
+ sh = addrBits/2 - 2
+)
+func overflow() {
+ _ = make([][1<<sh][1<<sh]byte, 64)
+}
+
+func badmapcap() {
+ _ = make(map[int]int, minus1)
+}
+
+func bigmapcap() {
+ _ = make(map[int]int, big)
+}
+
+func badchancap() {
+ _ = make(chan int, minus1)
+}
+
+func bigchancap() {
+ _ = make(chan int, big)
+}
+
+func overflowchan() {
+ if addrBits == 32 {
+ _ = make(chan [1<<15]byte, 1<<20)
+ } else {
+ // cannot overflow on 64-bit, because
+ // int is 32 bits and max chan value size
+ // in the implementation is 64 kB.
+ panic(1)
+ }
+}
+
+func main() {
+ shouldfail(badlen, "badlen")
+ shouldfail(biglen, "biglen")
+ shouldfail(badcap, "badcap")
+ shouldfail(badcap1, "badcap1")
+ shouldfail(bigcap, "bigcap")
+ shouldfail(overflow, "overflow")
+ shouldfail(badmapcap, "badmapcap")
+ shouldfail(bigmapcap, "bigmapcap")
+ shouldfail(badchancap, "badchancap")
+ shouldfail(bigchancap, "bigchancap")
+ shouldfail(overflowchan, "overflowchan")
+}