0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

patch 8.1.0524: terminal test fails on Windows

Problem:    Terminal test fails on Windows.
Solution:   Skip Test_terminal_does_not_truncate_last_newlines() for now.
This commit is contained in:
Bram Moolenaar
2018-11-11 23:14:54 +01:00
parent b244373bec
commit c2c02574ec
2 changed files with 8 additions and 1 deletions

View File

@@ -1660,7 +1660,12 @@ func Test_terminal_hidden_and_close()
endfunc
func Test_terminal_does_not_truncate_last_newlines()
let cmd = has('win32') ? 'type' : 'cat'
" FIXME: currently doens't work for Windows
if has('win32')
return
endif
let cmd = 'cat'
let contents = [
\ [ 'One', '', 'X' ],
\ [ 'Two', '', '' ],

View File

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