From: Zdenek Dohnal Date: Wed, 23 Feb 2022 14:25:17 +0000 (+0000) Subject: patch 8.2.4456: terminal test may fail on some machines X-Git-Tag: v8.2.4456 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=dd2dfb3cb00d47d2e8248c4e9d2cdf51e1574b79;p=thirdparty%2Fvim.git 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 #9834) --- diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index 233994275d..8e7525847a 100644 --- 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 index b5d93fb2a7..0bd499131e 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4456, /**/ 4455, /**/