1
0
forked from aniani/vim

patch 8.0.1055: bufline test hangs on MS-Windows

Problem:    Bufline test hangs on MS-Windows.
Solution:   Avoid message for writing file.  Source shared.vim when running
            test individually.
This commit is contained in:
Bram Moolenaar
2017-09-04 22:56:01 +02:00
parent 178333783f
commit 11aa62f8f9
3 changed files with 11 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
" Tests for setbufline() and getbufline() " Tests for setbufline() and getbufline()
if !exists('*GetVimCommand')
source shared.vim
endif
func Test_setbufline_getbufline() func Test_setbufline_getbufline()
new new
let b = bufnr('%') let b = bufnr('%')
@@ -30,7 +34,7 @@ func Test_setline_startup()
if cmd == '' if cmd == ''
return return
endif endif
call writefile(['call setline(1, "Hello")', 'w Xtest', 'q!'], 'Xscript') call writefile(['call setline(1, "Hello")', 'silent w Xtest', 'q!'], 'Xscript')
call system(cmd) call system(cmd)
call assert_equal(['Hello'], readfile('Xtest')) call assert_equal(['Hello'], readfile('Xtest'))

View File

@@ -4,6 +4,10 @@ if !has('timers')
finish finish
endif endif
if !exists('*WaitFor')
source shared.vim
endif
func MyHandler(timer) func MyHandler(timer)
let g:val += 1 let g:val += 1
endfunc endfunc

View File

@@ -769,6 +769,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1055,
/**/ /**/
1054, 1054,
/**/ /**/