Skip to content

Commit

Permalink
patch 8.1.1128: getwinpos() test does not work on MS-Windows
Browse files Browse the repository at this point in the history
Problem:    getwinpos() test does not work on MS-Windows.
Solution:   Skip the test.
  • Loading branch information
brammool committed Apr 6, 2019
1 parent 6bc9305 commit 94a7242
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/testdir/test_terminal.vim
Expand Up @@ -1889,8 +1889,9 @@ func Test_terminal_statusline()
endfunc

func Test_terminal_getwinpos()
" does not work in the MS-Windows console
if has('win32') && !has('gui')
" getwinpos() does not work in the MS-Windows console, and the GUI runs the
" console version in the terminal window.
if has('win32')
return
endif

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

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

0 comments on commit 94a7242

Please sign in to comment.