diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-05 22:21:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-05 22:21:08 +0100 |
commit | adbc11c2ee828fcc9d79c7d3c0c968c68657e3d1 (patch) | |
tree | 665bcd877f5cb5794b7d116cafa2bf48883252cc | |
parent | ff80cb6807d99db35cc928f151b87503b2928e19 (diff) | |
download | vim-git-adbc11c2ee828fcc9d79c7d3c0c968c68657e3d1.tar.gz |
patch 8.2.0217: terminal test fails on Macv8.2.0217
Problem: Terminal test fails on Mac.
Solution: Add a short wait.
-rw-r--r-- | src/testdir/test_terminal.vim | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index c028c69f6..605ac06fa 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -2362,6 +2362,7 @@ func Test_terminal_in_popup() call term_sendkeys(buf, "\<C-W>:call HidePopup()\<CR>") call VerifyScreenDump(buf, 'Test_terminal_popup_4', {}) call term_sendkeys(buf, "\<CR>") + call term_wait(buf, 50) call term_sendkeys(buf, ":q\<CR>") call term_wait(buf, 100) " wait for terminal to vanish diff --git a/src/version.c b/src/version.c index 45b4cc253..5a11a1f13 100644 --- 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 */ /**/ + 217, +/**/ 216, /**/ 215, |