From: Ian Lance Taylor Date: Wed, 14 Dec 2011 14:54:32 +0000 (+0000) Subject: runtime: Bump memory limit in gc_test. X-Git-Tag: releases/gcc-4.7.0~1539 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9532fecfc59a064f99f30173a2fc59e33467c283;p=thirdparty%2Fgcc.git runtime: Bump memory limit in gc_test. From-SVN: r182332 --- diff --git a/libgo/go/runtime/gc_test.go b/libgo/go/runtime/gc_test.go index 156d3bc7d302..63c60379696c 100644 --- a/libgo/go/runtime/gc_test.go +++ b/libgo/go/runtime/gc_test.go @@ -22,7 +22,7 @@ func TestGcSys(t *testing.T) { sys = runtime.MemStats.Sys - sys } t.Logf("used %d extra bytes", sys) - if sys > 2<<20 { + if sys > 4<<20 { t.Fatalf("using too much memory: %d bytes", sys) } }