# HG changeset patch # User Bram Moolenaar # Date 1583272804 -3600 # Node ID 47db1e17d0a43523f017b95e76ee61efc1d8bfe1 # Parent 7368dce16a5314f5df65cd7d54151911fe9311e9 patch 8.2.0351: terminal in popup test is still a bit flaky Commit: https://github.com/vim/vim/commit/3e919d2924c87eb8fee62603788fcc3ced2a0031 Author: Bram Moolenaar Date: Tue Mar 3 22:56:39 2020 +0100 patch 8.2.0351: terminal in popup test is still a bit flaky Problem: Terminal in popup test is still a bit flaky. Solution: Clear and redraw before opening the popup. diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -2357,6 +2357,7 @@ func Test_terminal_in_popup() call writefile(lines, 'XtermPopup') let buf = RunVimInTerminal('-S XtermPopup', #{rows: 15}) call term_wait(buf, 100) + call term_sendkeys(buf, "\") call term_sendkeys(buf, ":call OpenTerm(0)\") call term_wait(buf, 100) call term_sendkeys(buf, ":\") diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 351, +/**/ 350, /**/ 349,