# HG changeset patch # User Christian Brabandt # Date 1523090705 -7200 # Node ID 18c10f37ac5eb5c039b16797028502b6360bee82 # Parent ea38acad2135f0fb9f02e1a987486de1a9fc0a5b patch 8.0.1670: terminal window tests are still a bit flaky commit https://github.com/vim/vim/commit/b6ed74fef8e088128c45928ee7d02458b2882c1e Author: Bram Moolenaar Date: Sat Apr 7 10:42:14 2018 +0200 patch 8.0.1670: terminal window tests are still a bit flaky Problem: Terminal window tests are still a bit flaky. Solution: Increase the waiting time for the buffer to be created. 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 @@ -1061,7 +1061,7 @@ func Api_drop_common(options) \ "set t_ts=", \ ], 'Xscript') let buf = RunVimInTerminal('-S Xscript', {}) - call WaitFor({-> bufnr('Xtextfile') > 0}) + call WaitFor({-> bufnr('Xtextfile') > 0}, 2000) call assert_equal('Xtextfile', expand('%:t')) call assert_true(winnr('$') >= 3) return buf diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1670, +/**/ 1669, /**/ 1668,