From: ivmai Date: Tue, 27 Jul 2010 20:57:47 +0000 (+0000) Subject: 2010-07-28 Ivan Maidanski X-Git-Tag: gc7_2alpha5-20110107~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aeb6fa7919ec93d93a10b95ee53a35af1c1c56ae;p=gc 2010-07-28 Ivan Maidanski * tests/test.c (check_heap_stats): Increase max_heap_sz by 20% for 64-bit CPUs (to prevent "Unexpected heap growth" failure on Win64, at least). --- diff --git a/ChangeLog b/ChangeLog index 4c2cfd95..165a2221 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-07-28 Ivan Maidanski + + * tests/test.c (check_heap_stats): Increase max_heap_sz by 20% for + 64-bit CPUs (to prevent "Unexpected heap growth" failure on Win64, + at least). + 2010-07-14 Ivan Maidanski * tests/test.c (check_heap_stats): Increase max_heap_sz by 25% for diff --git a/tests/test.c b/tests/test.c index f98b00f9..b221bd35 100644 --- a/tests/test.c +++ b/tests/test.c @@ -1260,7 +1260,7 @@ void check_heap_stats(void) # endif # else # if CPP_WORDSZ == 64 - max_heap_sz = 19000000; + max_heap_sz = 23000000; # else max_heap_sz = 15000000; # endif