# HG changeset patch # User Bram Moolenaar # Date 1645626605 -3600 # Node ID 6c87f679ed2976e5cbb47fc327656a18b0ccfd70 # Parent 10df13052097bb8933ff8bbe66168261186edb46 patch 8.2.4456: terminal test may fail on some machines Commit: https://github.com/vim/vim/commit/dd2dfb3cb00d47d2e8248c4e9d2cdf51e1574b79 Author: Zdenek Dohnal Date: Wed Feb 23 14:25:17 2022 +0000 patch 8.2.4456: terminal test may fail on some machines Problem: Terminal test may fail on some machines. Solution: Increase wait time. (Zdenek Dohnal, closes https://github.com/vim/vim/issues/9834) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4456, +/**/ 4455, /**/ 4454,