summaryrefslogtreecommitdiff
path: root/test/mallocfin.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-03-24 19:52:07 -0700
committerRuss Cox <rsc@golang.org>2010-03-24 19:52:07 -0700
commit7327abfa1ffb93f68af954239a571460e729cfb5 (patch)
treec186e6f623ee9f5a287f045f3e3ee98b14a91547 /test/mallocfin.go
parent219daf8172d006c0f07b2f3c5b325dfefccd39ab (diff)
downloadgo-7327abfa1ffb93f68af954239a571460e729cfb5.tar.gz
test/mallocfin: relax test to 80% from 90%.
R=r CC=golang-dev http://codereview.appspot.com/725042
Diffstat (limited to 'test/mallocfin.go')
-rw-r--r--test/mallocfin.go2
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)
}
}