1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:44:39 -07:00

test/mallocfin: relax test to 80% from 90%.

R=r
CC=golang-dev
https://golang.org/cl/725042
This commit is contained in:
Russ Cox 2010-03-24 19:52:07 -07:00
parent a24cf69fd8
commit a00917ca1c

View File

@ -54,7 +54,7 @@ func main() {
runtime.GC()
runtime.Gosched()
}
if nfinal < N*9/10 {
if nfinal < N*8/10 {
panic("not enough finalizing:", nfinal, "/", N)
}
}