From: Bram Moolenaar Date: Wed, 16 Mar 2022 11:14:57 +0000 (+0000) Subject: patch 8.2.4577: message test is flaky X-Git-Tag: v8.2.4577 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9323ca51c2b1522f26907a7b8879067245ebd1be;p=vim patch 8.2.4577: message test is flaky Problem: Message test is flaky. (Elimar Riesebieter) Solution: Trigger the autocommand event only after startup is finished. --- diff --git a/src/testdir/test_messages.vim b/src/testdir/test_messages.vim index d3c80bf6c..32689b09e 100644 --- a/src/testdir/test_messages.vim +++ b/src/testdir/test_messages.vim @@ -360,12 +360,13 @@ func Test_fileinfo_after_echo() hide buffer a.txt - set updatetime=1 - autocmd CursorHold * b b.txt | w | echo "'b' written" + autocmd CursorHold * buf b.txt | w | echo "'b' written" END call writefile(content, 'Xtest_fileinfo_after_echo') let buf = RunVimInTerminal('-S Xtest_fileinfo_after_echo', #{rows: 6}) + call term_sendkeys(buf, ":set updatetime=50\") + call term_sendkeys(buf, "0$") call VerifyScreenDump(buf, 'Test_fileinfo_after_echo', {}) call term_sendkeys(buf, ":q\") diff --git a/src/version.c b/src/version.c index c447509c8..ba0058b67 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4577, /**/ 4576, /**/