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 2339942..8e75258 100644
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -715,7 +715,8 @@
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 b5d93fb..0bd4991 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4456,
+/**/
4455,
/**/
4454,