summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZdenek Dohnal <zdohnal@redhat.com>2022-02-23 14:25:17 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-23 14:25:17 +0000
commitdd2dfb3cb00d47d2e8248c4e9d2cdf51e1574b79 (patch)
tree0207b69b8bf2b22bea15bb1352c46e52d5195a22
parent2007dd49f5cb36f944cab1cfbceb0f864e625f74 (diff)
patch 8.2.4456: terminal test may fail on some machinesv8.2.4456
Problem: Terminal test may fail on some machines. Solution: Increase wait time. (Zdenek Dohnal, closes #9834)
-rw-r--r--src/testdir/test_terminal.vim3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
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
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4456,
+/**/
4455,
/**/
4454,