From 00f92f086e9e4b47e7067b8247881491468eb893 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 21 Aug 2023 15:30:20 +0800 Subject: vim-patch:8.2.3518: Test_xrestore sometimes fails Problem: Test_xrestore sometimes fails. Solution: Mark the test as flayky. Move marking test as flaky to the test instead of listing them in runtest. https://github.com/vim/vim/commit/f08b0eb8691ff09f98bc4beef986ece1c521655f Co-authored-by: Bram Moolenaar --- test/old/testdir/test_diffmode.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'test/old/testdir/test_diffmode.vim') diff --git a/test/old/testdir/test_diffmode.vim b/test/old/testdir/test_diffmode.vim index ac90aaaa02..bc5c42e985 100644 --- a/test/old/testdir/test_diffmode.vim +++ b/test/old/testdir/test_diffmode.vim @@ -857,6 +857,7 @@ func VerifyInternal(buf, dumpfile, extra) endfunc func Test_diff_screen() + let g:test_is_flaky = 1 CheckScreendump CheckFeature menu -- cgit From 02ca31979bed2b7e432401b23aaf7987a3f0badb Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 21 Aug 2023 15:38:19 +0800 Subject: vim-patch:8.2.4339: CTRL-A does not work properly with the cmdline popup menu Problem: CTRL-A does not work properly with the cmdline popup menu. Solution: Fix issues with CTRL-A. Add more tests for the cmdline popup menu. Remove TermWait() before VeriryScreenDump(). Refactor the cmdline popup code. (Yegappan Lakshmanan, closes vim/vim#9735) https://github.com/vim/vim/commit/560dff49c0095111fc96b4b8dd7f4d269aba9473 Co-authored-by: Yegappan Lakshmanan --- test/old/testdir/test_diffmode.vim | 1 - 1 file changed, 1 deletion(-) (limited to 'test/old/testdir/test_diffmode.vim') diff --git a/test/old/testdir/test_diffmode.vim b/test/old/testdir/test_diffmode.vim index bc5c42e985..d6d9f351fc 100644 --- a/test/old/testdir/test_diffmode.vim +++ b/test/old/testdir/test_diffmode.vim @@ -852,7 +852,6 @@ func VerifyInternal(buf, dumpfile, extra) call term_sendkeys(a:buf, ":diffupdate!\") " trailing : for leaving the cursor on the command line call term_sendkeys(a:buf, ":set diffopt=internal,filler" . a:extra . "\:") - call TermWait(a:buf) call VerifyScreenDump(a:buf, a:dumpfile, {}) endfunc -- cgit