aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2011-12-14 14:54:32 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2011-12-14 14:54:32 +0000
commit9532fecfc59a064f99f30173a2fc59e33467c283 (patch)
tree73ad5b542fb0b1b23e42393aac49f5a59a4fe9fb
parentc623f8372c205a28a1f0aa35932690449a032eb6 (diff)
downloadgcc-9532fecfc59a064f99f30173a2fc59e33467c283.zip
gcc-9532fecfc59a064f99f30173a2fc59e33467c283.tar.gz
gcc-9532fecfc59a064f99f30173a2fc59e33467c283.tar.bz2
runtime: Bump memory limit in gc_test.
From-SVN: r182332
-rw-r--r--libgo/go/runtime/gc_test.go2
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)
}
}