1
0
mirror of https://github.com/golang/go synced 2024-11-24 15:00:14 -07:00

runtime: bump gc 'extra bytes' check

(needed for non-zero GOMAXPROCS)

R=iant, rsc
CC=go.peter.90, golang-dev
https://golang.org/cl/5486059
This commit is contained in:
Christopher Wedgwood 2011-12-13 21:28:43 -08:00 committed by Ian Lance Taylor
parent 6481e37d28
commit 1e63a4e424

View File

@ -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)
}
}