From: Bram Moolenaar Date: Sat, 7 Dec 2019 16:05:31 +0000 (+0100) Subject: patch 8.1.2403: autocmd test fails under valgrind X-Git-Tag: v8.1.2403 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c47e8384de62dd67748454a853677e32ee7842c;p=vim patch 8.1.2403: autocmd test fails under valgrind Problem: Autocmd test fails under valgrind. Solution: Wait a bit longer. --- diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim index c16a679da..ab0240239 100644 --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -2253,9 +2253,9 @@ func Test_autocmd_SafeState() call WaitForAssert({-> assert_match('^xxxx', term_getline(buf, 6))}, 1000) call term_sendkeys(buf, ":let g:again = ''\:call CallTimer()\") - call term_wait(buf) + call term_wait(buf, 50) call term_sendkeys(buf, ":\") - call term_wait(buf) + call term_wait(buf, 50) call term_sendkeys(buf, ":echo g:again\") call WaitForAssert({-> assert_match('xtx', term_getline(buf, 6))}, 1000) diff --git a/src/version.c b/src/version.c index 8f098f29d..f991cfb3a 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2403, /**/ 2402, /**/