test: make test for #14040 more stable (#16911)

This commit is contained in:
Daniel Steinberg
2022-01-04 09:25:28 -05:00
committed by GitHub
parent e79a588937
commit cc62f3d6cb

View File

@@ -195,10 +195,10 @@ describe('memory usage', function()
local after = monitor_memory_usage(pid) local after = monitor_memory_usage(pid)
source('bwipe!') source('bwipe!')
poke_eventloop() poke_eventloop()
-- Allow for an increase of 5% in memory usage, which accommodates minor fluctuation, -- Allow for an increase of 10% in memory usage, which accommodates minor fluctuation,
-- but is small enough that if memory were not released (prior to PR #14884), the test -- but is small enough that if memory were not released (prior to PR #14884), the test
-- would fail. -- would fail.
local upper = before.last * 1.05 local upper = before.last * 1.10
check_result({before=before, after=after}, pcall(ok, after.last <= upper)) check_result({before=before, after=after}, pcall(ok, after.last <= upper))
end) end)
end) end)