From: Bram Moolenaar Date: Wed, 1 Jan 2020 14:26:32 +0000 (+0100) Subject: patch 8.2.0072: memory test still fails on Cirrus CI X-Git-Tag: v8.2.0072 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb062c1588c324a1ce4cf01fd5e0780e83aaabe4;p=vim patch 8.2.0072: memory test still fails on Cirrus CI Problem: Memory test still fails on Cirrus CI. Solution: Allow for a tiny bit more tolerance in the upper limit. --- diff --git a/src/testdir/test_memory_usage.vim b/src/testdir/test_memory_usage.vim index 43f4abcb5..e7b9ab6da 100644 --- a/src/testdir/test_memory_usage.vim +++ b/src/testdir/test_memory_usage.vim @@ -151,7 +151,7 @@ func Test_memory_func_capture_lvars() " otherwise the test fails sometimes. On Cirrus CI with FreeBSD we need to " be even more permissive. if has('bsd') - let multiplier = 14 + let multiplier = 15 else let multiplier = 12 endif diff --git a/src/version.c b/src/version.c index 78af80d95..c8cd6f12c 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 72, /**/ 71, /**/