Skip to content

Commit

Permalink
patch 8.2.4456: terminal test may fail on some machines
Browse files Browse the repository at this point in the history
Problem:    Terminal test may fail on some machines.
Solution:   Increase wait time. (Zdenek Dohnal, closes #9834)
  • Loading branch information
zdohnal authored and brammool committed Feb 23, 2022
1 parent 2007dd4 commit dd2dfb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/testdir/test_terminal.vim
Expand Up @@ -715,7 +715,8 @@ endfunction
func Test_terminal_noblock()
let g:test_is_flaky = 1
let buf = term_start(&shell)
let wait_time = 5000
" Starting a terminal can be slow, esp. on busy CI machines.
let wait_time = 7500
let letters = 'abcdefghijklmnopqrstuvwxyz'
if has('bsd') || has('mac') || has('sun')
" The shell or something else has a problem dealing with more than 1000
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

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

0 comments on commit dd2dfb3

Please sign in to comment.