comparison src/testdir/test_terminal.vim @ 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 4df23d9bad47
children 33a2dec07a0f
comparison
equal deleted inserted replaced
13595:ea38acad2135 13596:18c10f37ac5e
1059 \ 'let &titlestring = ''["drop","Xtextfile"' . a:options . ']''', 1059 \ 'let &titlestring = ''["drop","Xtextfile"' . a:options . ']''',
1060 \ 'redraw', 1060 \ 'redraw',
1061 \ "set t_ts=", 1061 \ "set t_ts=",
1062 \ ], 'Xscript') 1062 \ ], 'Xscript')
1063 let buf = RunVimInTerminal('-S Xscript', {}) 1063 let buf = RunVimInTerminal('-S Xscript', {})
1064 call WaitFor({-> bufnr('Xtextfile') > 0}) 1064 call WaitFor({-> bufnr('Xtextfile') > 0}, 2000)
1065 call assert_equal('Xtextfile', expand('%:t')) 1065 call assert_equal('Xtextfile', expand('%:t'))
1066 call assert_true(winnr('$') >= 3) 1066 call assert_true(winnr('$') >= 3)
1067 return buf 1067 return buf
1068 endfunc 1068 endfunc
1069 1069