From: Russ Cox Date: Thu, 25 Mar 2010 02:52:07 +0000 (-0700) Subject: test/mallocfin: relax test to 80% from 90%. X-Git-Tag: weekly.2010-03-30~62 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a00917ca1c69a7e9a44344c20c3d32b764d7002f;p=gostls13.git test/mallocfin: relax test to 80% from 90%. R=r CC=golang-dev https://golang.org/cl/725042 --- diff --git a/test/mallocfin.go b/test/mallocfin.go index 918b806337..da3253a04f 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) } }