diff options
author | Russ Cox <rsc@golang.org> | 2010-03-24 19:52:07 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2010-03-24 19:52:07 -0700 |
commit | 3c9e70e1d3c32a4fbba15f6849b03cb1fbfe8add (patch) | |
tree | c186e6f623ee9f5a287f045f3e3ee98b14a91547 | |
parent | ad91bc10b0fa9beade3787d16416bc86104b1ba7 (diff) | |
download | golang-3c9e70e1d3c32a4fbba15f6849b03cb1fbfe8add.tar.gz |
test/mallocfin: relax test to 80% from 90%.
R=r
CC=golang-dev
http://codereview.appspot.com/725042
-rw-r--r-- | test/mallocfin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mallocfin.go b/test/mallocfin.go index 918b80633..da3253a04 100644 --- a/test/mallocfin.go +++ b/test/mallocfin.go @@ -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) } } |