From: Ivan Maidanski Date: Tue, 13 Sep 2011 17:09:46 +0000 (+0400) Subject: Increase tests/test.c max heap size limit (required for Cygwin) X-Git-Tag: gc7_3alpha2~360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb9c26fada4bf125ecd759673a29a4a4a63fa127;p=gc Increase tests/test.c max heap size limit (required for Cygwin) * tests/test.c (check_heap_stats): Increase max_heap_sz value (for 32-bit targets) from 15M by 1M (as the former is hit sometimes on Cygwin). --- diff --git a/tests/test.c b/tests/test.c index 2800308b..e2f7a01e 100644 --- a/tests/test.c +++ b/tests/test.c @@ -1271,7 +1271,7 @@ void check_heap_stats(void) # if CPP_WORDSZ == 64 max_heap_sz = 23000000; # else - max_heap_sz = 15000000; + max_heap_sz = 16000000; # endif # endif # ifdef GC_DEBUG