mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.1.1027: memory usage test sometimes fails
Problem: Memory usage test sometimes fails.
Solution: Use 80% of before.last as the lower limit. (Christian Brabandt)
08cda65ddf
This commit is contained in:
parent
1212390254
commit
9ad2ba1c5c
@ -143,8 +143,10 @@ describe('memory usage', function()
|
|||||||
feed_command('so '..fname)
|
feed_command('so '..fname)
|
||||||
end
|
end
|
||||||
local last = monitor_memory_usage(pid)
|
local last = monitor_memory_usage(pid)
|
||||||
|
-- The usage may be a bit less than the last value
|
||||||
|
local lower = before.last * 8 / 10
|
||||||
check_result({before=before, after=after, last=last},
|
check_result({before=before, after=after, last=last},
|
||||||
pcall(ok, before.last < last.last))
|
pcall(ok, lower < last.last))
|
||||||
check_result({before=before, after=after, last=last},
|
check_result({before=before, after=after, last=last},
|
||||||
pcall(ok, last.last < after.max + (after.last - before.last)))
|
pcall(ok, last.last < after.max + (after.last - before.last)))
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user