comparison src/testdir/test_edit.vim @ 29340:fba9e366ced4 v9.0.0013

patch 9.0.0013: reproducing memory access errors can be difficult Commit: https://github.com/vim/vim/commit/fa4873ccfc10e0f278dc46f39d00136fab059b19 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 30 22:13:59 2022 +0100 patch 9.0.0013: reproducing memory access errors can be difficult Problem: Reproducing memory access errors can be difficult. Solution: When testing, copy each line to allocated memory, so that valgrind can detect accessing memory before and/or after it. Fix uncovered problems.
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Jun 2022 23:15:03 +0200
parents 6b4c1ca1436e
children 2a327999c05c
comparison
equal deleted inserted replaced
29339:a023e3008ae3 29340:fba9e366ced4
1858 inoremap <C-B> <Cmd>edit Xfoo<CR> 1858 inoremap <C-B> <Cmd>edit Xfoo<CR>
1859 END 1859 END
1860 call writefile(lines, 'Xtest_edit_insertmode_ex_edit') 1860 call writefile(lines, 'Xtest_edit_insertmode_ex_edit')
1861 1861
1862 let buf = RunVimInTerminal('-S Xtest_edit_insertmode_ex_edit', #{rows: 6}) 1862 let buf = RunVimInTerminal('-S Xtest_edit_insertmode_ex_edit', #{rows: 6})
1863 " Somehow this can be very slow with valgrind. A separate TermWait() works
1864 " better than a longer time with WaitForAssert() (why?)
1865 call TermWait(buf, 1000)
1863 call WaitForAssert({-> assert_match('^-- INSERT --\s*$', term_getline(buf, 6))}) 1866 call WaitForAssert({-> assert_match('^-- INSERT --\s*$', term_getline(buf, 6))})
1864 call term_sendkeys(buf, "\<C-B>\<C-L>") 1867 call term_sendkeys(buf, "\<C-B>\<C-L>")
1865 call WaitForAssert({-> assert_notmatch('^-- INSERT --\s*$', term_getline(buf, 6))}) 1868 call WaitForAssert({-> assert_notmatch('^-- INSERT --\s*$', term_getline(buf, 6))})
1866 1869
1867 " clean up 1870 " clean up