Commit 9532fecf by Ian Lance Taylor

runtime: Bump memory limit in gc_test.

From-SVN: r182332
parent c623f837
...@@ -22,7 +22,7 @@ func TestGcSys(t *testing.T) { ...@@ -22,7 +22,7 @@ func TestGcSys(t *testing.T) {
sys = runtime.MemStats.Sys - sys sys = runtime.MemStats.Sys - sys
} }
t.Logf("used %d extra bytes", 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) t.Fatalf("using too much memory: %d bytes", sys)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment