# HG changeset patch # User Bram Moolenaar # Date 1577889004 -3600 # Node ID 9afeb0d2c4abebd488347d3590f1a87d06d3d221 # Parent ab4224193d2954d3b739681cce2e4d6c8f4ab738 patch 8.2.0072: memory test still fails on Cirrus CI Commit: https://github.com/vim/vim/commit/bb062c1588c324a1ce4cf01fd5e0780e83aaabe4 Author: Bram Moolenaar Date: Wed Jan 1 15:26:32 2020 +0100 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 72, +/**/ 71, /**/ 70,