changeset 27861:6c87f679ed29 v8.2.4456

patch 8.2.4456: terminal test may fail on some machines Commit: https://github.com/vim/vim/commit/dd2dfb3cb00d47d2e8248c4e9d2cdf51e1574b79 Author: Zdenek Dohnal <zdohnal@redhat.com> 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)
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Feb 2022 15:30:05 +0100
parents 10df13052097
children d61cde8ab682
files src/testdir/test_terminal.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,