From 93b7defb9de689b91cb7b284836c3bf2c4045604 Mon Sep 17 00:00:00 2001 From: ian Date: Wed, 14 Dec 2011 14:54:32 +0000 Subject: runtime: Bump memory limit in gc_test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182332 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgo/go/runtime/gc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo') 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) } } -- cgit v1.2.1