Skip to content

Commit

Permalink
patch 8.0.1055: bufline test hangs on MS-Windows
Browse files Browse the repository at this point in the history
Problem:    Bufline test hangs on MS-Windows.
Solution:   Avoid message for writing file.  Source shared.vim when running
            test individually.
  • Loading branch information
brammool committed Sep 4, 2017
1 parent 1783337 commit 11aa62f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/testdir/test_bufline.vim
@@ -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('%')
Expand Down Expand Up @@ -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'))


Expand Down
4 changes: 4 additions & 0 deletions src/testdir/test_timers.vim
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -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,
/**/ /**/
Expand Down

0 comments on commit 11aa62f

Please sign in to comment.