diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-14 15:39:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-14 15:39:37 -0400 |
commit | b1f7c4e7d624f865a53cb26416a21204ee8c020f (patch) | |
tree | 22d7a067e8daef0579200d784e063e3fb23f74b7 /test/functional/legacy/memory_usage_spec.lua | |
parent | 3c8583e43bcb644d75c17c072ddf6f067439fde1 (diff) | |
parent | c47dd5376effb9e3a0d5709c88056733285ac09c (diff) | |
download | rneovim-b1f7c4e7d624f865a53cb26416a21204ee8c020f.tar.gz rneovim-b1f7c4e7d624f865a53cb26416a21204ee8c020f.tar.bz2 rneovim-b1f7c4e7d624f865a53cb26416a21204ee8c020f.zip |
Merge pull request #14131 from janlazo/vim-8.2.2596
vim-patch:8.2.{2596,2601,2604}
Diffstat (limited to 'test/functional/legacy/memory_usage_spec.lua')
-rw-r--r-- | test/functional/legacy/memory_usage_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/legacy/memory_usage_spec.lua b/test/functional/legacy/memory_usage_spec.lua index 5f7bbd887f..97ac96804e 100644 --- a/test/functional/legacy/memory_usage_spec.lua +++ b/test/functional/legacy/memory_usage_spec.lua @@ -157,8 +157,8 @@ describe('memory usage', function() -- The usage may be a bit less than the last value, use 80%. -- Allow for 20% tolerance at the upper limit. That's very permissive, but -- otherwise the test fails sometimes. On Sourcehut CI with FreeBSD we need to - -- be even more permissive. - local upper_multiplier = uname() == 'freebsd' and 15 or 12 + -- be even much more permissive. + local upper_multiplier = uname() == 'freebsd' and 19 or 12 local lower = before.last * 8 / 10 local upper = load_adjust((after.max + (after.last - before.last)) * upper_multiplier / 10) check_result({before=before, after=after, last=last}, |