Mercurial > vim
changeset 23217:0e4b3e7010df v8.2.2154
patch 8.2.2154: popupwin test for terminal buffer fails sometimes
Commit: https://github.com/vim/vim/commit/0353f56ddb379e7f1a68172fa4743355e04df21e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 17 22:27:38 2020 +0100
patch 8.2.2154: popupwin test for terminal buffer fails sometimes
Problem: Popupwin test for terminal buffer fails sometimes.
Solution: Wait for the prompt to appear.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 17 Dec 2020 22:30:04 +0100 |
parents | 47128eac082d |
children | 7e78c626ac4c |
files | src/testdir/test_popupwin.vim src/version.c |
diffstat | 2 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -2673,13 +2673,14 @@ func Test_popupwin_terminal_buffer() let termbuf = term_start(&shell, #{hidden: 1}) let winid = popup_create(termbuf, #{minwidth: 40, minheight: 10, border: []}) - " Wait for shell to start and show a prompt + " Wait for shell to start call WaitForAssert({-> assert_equal("run", job_status(term_getjob(termbuf)))}) - sleep 20m + " Wait for a prompt (see border char first, then space after prompt) + call WaitForAssert({ -> assert_equal(' ', screenstring(screenrow(), screencol() - 1))}) " When typing a character, the cursor is after it. call feedkeys("x", 'xt') - sleep 10m + call term_wait(termbuf) redraw call WaitForAssert({ -> assert_equal('x', screenstring(screenrow(), screencol() - 1))}) call feedkeys("\<BS>", 'xt')