Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.1.0028: prompt buffer test fails on MS-Windows
Problem:    Prompt buffer test fails on MS-Windows.
Solution:   Disable the test for now. Remove stray assert.
  • Loading branch information
brammool committed Jun 3, 2018
1 parent f273245 commit 1149382
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/testdir/test_prompt_buffer.vim
Expand Up @@ -11,7 +11,10 @@ func Test_prompt_basic()
" We need to use a terminal window to be able to feed keys without leaving
" Insert mode.
if !has('terminal')
call assert_report('no terminal')
return
endif
if has('win32')
" TODO: make this work on MS-Windows
return
endif
call writefile([
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

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

0 comments on commit 1149382

Please sign in to comment.