# HG changeset patch # User Bram Moolenaar # Date 1542055506 -3600 # Node ID efd7bace40f4fcd627a9de0927f24ec69a74ce63 # Parent 4f679be36482c6896fce931875547e98eba1c87a patch 8.1.0525: terminal test skips part on Windows commit https://github.com/vim/vim/commit/d3471e578506d5554ab99c4cd08af2a021c4f461 Author: Bram Moolenaar Date: Mon Nov 12 21:42:24 2018 +0100 patch 8.1.0525: terminal test skips part on Windows Problem: Terminal test skips part on Windows. Solution: Fix Test_terminal_does_not_truncate_last_newlines(). (Hirohito Higashi, closes #3606) diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -1269,7 +1269,8 @@ GvimExt/gvimext.dll: GvimExt/gvimext.cpp tags: notags - $(CTAGS) *.c *.cpp *.h if_perl.xs + $(CTAGS) *.c *.cpp *.h + if exist auto\if_perl.c $(CTAGS) --append=yes auto\if_perl.c notags: - if exist tags del tags @@ -1323,7 +1324,7 @@ testclean: $(MAKE) /NOLOGO -f Make_dos.mak nolog $(MAKE) /NOLOGO -f Make_dos.mak $@.res $(MAKE) /NOLOGO -f Make_dos.mak report - cat messages + type messages cd .. ########################################################################### diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -1660,12 +1660,6 @@ func Test_terminal_hidden_and_close() endfunc func Test_terminal_does_not_truncate_last_newlines() - " FIXME: currently doens't work for Windows - if has('win32') - return - endif - - let cmd = 'cat' let contents = [ \ [ 'One', '', 'X' ], \ [ 'Two', '', '' ], @@ -1674,11 +1668,15 @@ func Test_terminal_does_not_truncate_las for c in contents call writefile(c, 'Xfile') - exec 'term' cmd 'Xfile' + if has('win32') + term cmd /c type Xfile + else + term cat Xfile + endif let bnr = bufnr('$') call assert_equal('terminal', getbufvar(bnr, '&buftype')) call WaitForAssert({-> assert_equal('finished', term_getstatus(bnr))}) - sleep 50m + sleep 100m call assert_equal(c, getline(1, line('$'))) quit endfor diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -793,6 +793,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 525, +/**/ 524, /**/ 523,