# HG changeset patch # User Bram Moolenaar # Date 1550187006 -3600 # Node ID 8f4948be3860bb2495b54d2c5b3c377242143d21 # Parent 5cf9301c8e1e5ecbf8b88dc8e4ade6c9c115647a patch 8.1.0924: terminal scrollback test still flaky commit https://github.com/vim/vim/commit/7e841e3ce507d3c03175213d167692609028fdd9 Author: Bram Moolenaar 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. diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- 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 --- 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,