From: Bram Moolenaar Date: Thu, 14 Feb 2019 23:26:14 +0000 (+0100) Subject: patch 8.1.0924: terminal scrollback test still flaky X-Git-Tag: v8.1.0924 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e841e3ce507d3c03175213d167692609028fdd9;p=vim 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. --- diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index 4bac4f93c..353bd54d0 100644 --- 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\", "xt")', - \ 'sleep 100m', + \ 'sleep 200m', \ 'call feedkeys("\N", "xt")', \ ], 'XTest_postponed') let buf = RunVimInTerminal('-S XTest_postponed', {}) diff --git a/src/version.c b/src/version.c index bb5e0e1db..10715acba 100644 --- a/src/version.c +++ b/src/version.c @@ -783,6 +783,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 924, /**/ 923, /**/