comparison src/testdir/test_terminal.vim @ 13602:33a2dec07a0f v8.0.1673

patch 8.0.1673: terminal window tests are still a bit flaky commit https://github.com/vim/vim/commit/4791015e6f0adf7f3a0a6a59884c4092ca3c19ef Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 7 19:27:16 2018 +0200 patch 8.0.1673: terminal window tests are still a bit flaky Problem: Terminal window tests are still a bit flaky. Solution: Increase the waiting time even more. (Elimar Riesebieter)
author Christian Brabandt <cb@256bit.org>
date Sat, 07 Apr 2018 19:30:06 +0200
parents 18c10f37ac5e
children ab89131d30e0
comparison
equal deleted inserted replaced
13601:a89db31443a2 13602:33a2dec07a0f
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}, 2000) 1064 call WaitFor({-> bufnr('Xtextfile') > 0}, 5000)
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