forked from aniani/vim
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.
This commit is contained in:
@@ -2673,13 +2673,14 @@ func Test_popupwin_terminal_buffer()
|
|||||||
|
|
||||||
let termbuf = term_start(&shell, #{hidden: 1})
|
let termbuf = term_start(&shell, #{hidden: 1})
|
||||||
let winid = popup_create(termbuf, #{minwidth: 40, minheight: 10, border: []})
|
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)))})
|
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.
|
" When typing a character, the cursor is after it.
|
||||||
call feedkeys("x", 'xt')
|
call feedkeys("x", 'xt')
|
||||||
sleep 10m
|
call term_wait(termbuf)
|
||||||
redraw
|
redraw
|
||||||
call WaitForAssert({ -> assert_equal('x', screenstring(screenrow(), screencol() - 1))})
|
call WaitForAssert({ -> assert_equal('x', screenstring(screenrow(), screencol() - 1))})
|
||||||
call feedkeys("\<BS>", 'xt')
|
call feedkeys("\<BS>", 'xt')
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2154,
|
||||||
/**/
|
/**/
|
||||||
2153,
|
2153,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user