]> Cypherpunks.ru repositories - gostls13.git/commitdiff
test/mallocfin: relax test to 80% from 90%.
authorRuss Cox <rsc@golang.org>
Thu, 25 Mar 2010 02:52:07 +0000 (19:52 -0700)
committerRuss Cox <rsc@golang.org>
Thu, 25 Mar 2010 02:52:07 +0000 (19:52 -0700)
R=r
CC=golang-dev
https://golang.org/cl/725042

test/mallocfin.go

index 918b806337b0a51beb35ceb051a09d42d9657363..da3253a04f2c1d14421db91e3752e162da34c448 100644 (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)
        }
 }