changeset 13596:18c10f37ac5e v8.0.1670

patch 8.0.1670: terminal window tests are still a bit flaky commit https://github.com/vim/vim/commit/b6ed74fef8e088128c45928ee7d02458b2882c1e Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sat, 07 Apr 2018 10:45:05 +0200
parents ea38acad2135
children 3010125c4ab8
files src/testdir/test_terminal.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,