Bram, the latest build of the vim-win32-installer failed with this error message:
https://ci.appveyor.com/project/chrisbra/vim-win32-installer/builds/23206196/job/2i61rw80gx51ubv7#L6622 function RunTheTest[40]..Test_memory_func_capture_lvars line 29: Expected range 23092 - 43324, but got 22800 It is kind of strange, that the test fails, because Vim uses less memory than expected. So I wonder, if this patch would make a difference: diff --git a/src/testdir/test_memory_usage.vim b/src/testdir/test_memory_usage.vim index 23dcc62ac..59e795da6 100644 --- a/src/testdir/test_memory_usage.vim +++ b/src/testdir/test_memory_usage.vim @@ -124,7 +124,7 @@ func Test_memory_func_capture_lvars() let vim = s:vim_new() call vim.start('--clean', '-c', 'set noswapfile', testfile) - let before = s:monitor_memory_usage(vim.pid).last + let before = s:monitor_memory_usage(vim.pid) call term_sendkeys(vim.buf, ":so %\<CR>") call WaitFor({-> term_getcursor(vim.buf)[0] == 1}) @@ -137,7 +137,7 @@ func Test_memory_func_capture_lvars() let last = s:monitor_memory_usage(vim.pid).last endfor - call assert_inrange(before, after.max + (after.last - before), last) + call assert_inrange(before.min, after.max + (after.last - before.last), last) call vim.stop() call delete(testfile) Best, Christian -- Aus der Natur, nach welcher Seite hin man schaue, entspringt Unendliches. -- Goethe, Maximen und Reflektionen, Nr. 1060 -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
