changeset 15834:8f4948be3860 v8.1.0924

patch 8.1.0924: terminal scrollback test still flaky commit https://github.com/vim/vim/commit/7e841e3ce507d3c03175213d167692609028fdd9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 15 00:26:14 2019 +0100 patch 8.1.0924: terminal scrollback test still flaky Problem: Terminal scrollback test still flaky. Solution: Wait a bit longer before running the tail command.
author Bram Moolenaar <Bram@vim.org>
date Fri, 15 Feb 2019 00:30:06 +0100
parents 5cf9301c8e1e
children 1ca879393123
files src/testdir/test_terminal.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -311,9 +311,9 @@ func Test_terminal_postponed_scrollback(
   call writefile(range(50), 'Xtext')
   call writefile([
 	\ 'terminal',
-	\ 'sleep 100m',
+	\ 'sleep 400m',
 	\ 'call feedkeys("tail -n 100 -f Xtext\<CR>", "xt")',
-	\ 'sleep 100m',
+	\ 'sleep 200m',
 	\ 'call feedkeys("\<C-W>N", "xt")',
 	\ ], 'XTest_postponed')
   let buf = RunVimInTerminal('-S XTest_postponed', {})
--- a/src/version.c
+++ b/src/version.c
@@ -784,6 +784,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    924,
+/**/
     923,
 /**/
     922,