Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.0.1694: terminal API test is a bit flaky
Problem:    Terminal API test is a bit flaky.
Solution:   Wait longer for Vim to stop.
  • Loading branch information
brammool committed Apr 10, 2018
1 parent 1acdb3f commit b377457
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/screendump.vim
Expand Up @@ -70,7 +70,7 @@ endfunc
func StopVimInTerminal(buf)
call assert_equal("running", term_getstatus(a:buf))
call term_sendkeys(a:buf, "\<Esc>\<Esc>:qa!\<cr>")
call WaitFor('term_getstatus(' . a:buf . ') == "finished"')
call WaitFor('term_getstatus(' . a:buf . ') == "finished"', 3000)
only!
endfunc

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -762,6 +762,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1694,
/**/
1693,
/**/
Expand Down

0 comments on commit b377457

Please sign in to comment.