From: Ivan Maidanski Date: Tue, 2 Apr 2019 19:59:54 +0000 (+0300) Subject: Avoid rare 'Unexpected heap growth' in multi-threaded gctest on Cygwin/x64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd39d90ae204f7309c1adab2c1e2713b93407c94;p=gc Avoid rare 'Unexpected heap growth' in multi-threaded gctest on Cygwin/x64 * tests/test.c [!VERY_SMALL_CONFIG && CPP_WORDSZ==64] (check_heap_stats): Change 25000000 (max_heap_sz value) to 26000000. --- diff --git a/tests/test.c b/tests/test.c index aef85531..334854df 100644 --- a/tests/test.c +++ b/tests/test.c @@ -1668,7 +1668,7 @@ void check_heap_stats(void) # endif # else # if CPP_WORDSZ == 64 - max_heap_sz = 25000000; + max_heap_sz = 26000000; # else max_heap_sz = 16000000; # endif