diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-12-14 14:54:32 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-12-14 14:54:32 +0000 |
commit | 9532fecfc59a064f99f30173a2fc59e33467c283 (patch) | |
tree | 73ad5b542fb0b1b23e42393aac49f5a59a4fe9fb /libgo/go | |
parent | c623f8372c205a28a1f0aa35932690449a032eb6 (diff) | |
download | gcc-9532fecfc59a064f99f30173a2fc59e33467c283.zip gcc-9532fecfc59a064f99f30173a2fc59e33467c283.tar.gz gcc-9532fecfc59a064f99f30173a2fc59e33467c283.tar.bz2 |
runtime: Bump memory limit in gc_test.
From-SVN: r182332
Diffstat (limited to 'libgo/go')
-rw-r--r-- | libgo/go/runtime/gc_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/runtime/gc_test.go b/libgo/go/runtime/gc_test.go index 156d3bc..63c6037 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) } } |