neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 6f5ff5818abcfff4fce74f3972debc72704f8d49
parent cc35352f65f823259675f84a915ee03d2423913e
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Mon, 21 Aug 2023 15:20:19 +0800

vim-patch:8.1.2403: autocmd test fails under valgrind

Problem:    Autocmd test fails under valgrind.
Solution:   Wait a bit longer.

https://github.com/vim/vim/commit/3c47e8384de62dd67748454a853677e32ee7842c

Co-authored-by: Bram Moolenaar <Bram@vim.org>

Diffstat:
Mtest/old/testdir/test_autocmd.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/old/testdir/test_autocmd.vim b/test/old/testdir/test_autocmd.vim @@ -2982,9 +2982,9 @@ func Test_autocmd_SafeState() call WaitForAssert({-> assert_match('^xxxx', term_getline(buf, 6))}, 1000) call term_sendkeys(buf, ":let g:again = ''\<CR>:call CallTimer()\<CR>") - call term_wait(buf) + call term_wait(buf, 50) call term_sendkeys(buf, ":\<CR>") - call term_wait(buf) + call term_wait(buf, 50) call term_sendkeys(buf, ":echo g:again\<CR>") call WaitForAssert({-> assert_match('xtx', term_getline(buf, 6))}, 1000)