# HG changeset patch # User Bram Moolenaar # Date 1581869704 -3600 # Node ID 21eefaf6bc5b2ed7d12836abc9957e50754df9d7 # Parent de54fb0ff5e58c47f148219bc530d1b53a08af59 patch 8.2.0266: terminal in popup test sometimes fails on Mac Commit: https://github.com/vim/vim/commit/a28be85ccde03ee0a0dc984dfd7396c50713b593 Author: Bram Moolenaar Date: Sun Feb 16 17:04:09 2020 +0100 patch 8.2.0266: terminal in popup test sometimes fails on Mac Problem: Terminal in popup test sometimes fails on Mac. Solution: Add a short delay. 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 @@ -2353,6 +2353,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 VerifyScreenDump(buf, 'Test_terminal_popup_1', {}) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 266, +/**/ 265, /**/ 264,