From 9532fecfc59a064f99f30173a2fc59e33467c283 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 14 Dec 2011 14:54:32 +0000 Subject: [PATCH] runtime: Bump memory limit in gc_test. From-SVN: r182332 --- libgo/go/runtime/gc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgo/go/runtime/gc_test.go b/libgo/go/runtime/gc_test.go index 156d3bc7d30..63c60379696 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) } }