mirror of
https://github.com/golang/go
synced 2024-11-05 17:26:11 -07:00
f9531448b8
Because the hint parameter is supposed to be treated purely as a hint, if it doesn't meet the requirements we disregard it and continue as if there was no hint at all. Fixes #19926 Change-Id: I86e7f99472fad6b99ba4e2fd33e4a9e55d55115e Reviewed-on: https://go-review.googlesource.com/40854 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Keith Randall <khr@golang.org>
76 lines
1.2 KiB
Go
76 lines
1.2 KiB
Go
// run
|
|
|
|
// 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.
|
|
|
|
// https://golang.org/issue/589
|
|
|
|
package main
|
|
|
|
var bug = false
|
|
|
|
var minus1 = -1
|
|
var five = 5
|
|
var big int64 = 10 | 1<<32
|
|
|
|
type block [1<<19]byte
|
|
|
|
var g1 []block
|
|
|
|
func shouldfail(f func(), desc string) {
|
|
defer func() { recover() }()
|
|
f()
|
|
if !bug {
|
|
println("BUG")
|
|
bug = true
|
|
}
|
|
println("didn't crash: ", desc)
|
|
}
|
|
|
|
func badlen() {
|
|
g1 = make([]block, minus1)
|
|
}
|
|
|
|
func biglen() {
|
|
g1 = make([]block, big)
|
|
}
|
|
|
|
func badcap() {
|
|
g1 = make([]block, 10, minus1)
|
|
}
|
|
|
|
func badcap1() {
|
|
g1 = make([]block, 10, five)
|
|
}
|
|
|
|
func bigcap() {
|
|
g1 = make([]block, 10, big)
|
|
}
|
|
|
|
type cblock [1<<16-1]byte
|
|
|
|
var g4 chan cblock
|
|
func badchancap() {
|
|
g4 = make(chan cblock, minus1)
|
|
}
|
|
|
|
func bigchancap() {
|
|
g4 = make(chan cblock, big)
|
|
}
|
|
|
|
func overflowchan() {
|
|
g4 = make(chan cblock, 1<<30)
|
|
}
|
|
|
|
func main() {
|
|
shouldfail(badlen, "badlen")
|
|
shouldfail(biglen, "biglen")
|
|
shouldfail(badcap, "badcap")
|
|
shouldfail(badcap1, "badcap1")
|
|
shouldfail(bigcap, "bigcap")
|
|
shouldfail(badchancap, "badchancap")
|
|
shouldfail(bigchancap, "bigchancap")
|
|
shouldfail(overflowchan, "overflowchan")
|
|
}
|