Skip to content

Commit

Permalink
patch 8.1.0517: Test_window_split_edit_alternate() fails on AppVeyor
Browse files Browse the repository at this point in the history
Problem:    Test_window_split_edit_alternate() fails on AppVeyor.
Solution:   Disable the failing part for now.
  • Loading branch information
brammool committed Nov 10, 2018
1 parent ddd1f91 commit d42333d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/testdir/test_window_cmd.vim
Expand Up @@ -125,10 +125,13 @@ func Test_window_split_edit_alternate()
call assert_equal(l:nr2, winbufnr(2))
only

" Test the Normal mode command.
call feedkeys("\<C-W>\<C-^>", 'tx')
call assert_equal(l:nr2, winbufnr(1))
call assert_equal(l:nr1, winbufnr(2))
" FIXME: this currently fails on AppVeyor, but passes locally
if !has('win32')
" Test the Normal mode command.
call feedkeys("\<C-W>\<C-^>", 'tx')
call assert_equal(l:nr2, winbufnr(1))
call assert_equal(l:nr1, winbufnr(2))
endif

%bw!
endfunc
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -792,6 +792,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
517,
/**/
516,
/**/
Expand Down

0 comments on commit d42333d

Please sign in to comment.