Skip to content

Commit

Permalink
patch 8.1.0145: test with grep is failing on MS-Windows
Browse files Browse the repository at this point in the history
Problem:    Test with grep is failing on MS-Windows.
Solution:   Skip the test.
  • Loading branch information
brammool committed Jul 3, 2018
1 parent b2e0c94 commit 851332e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/testdir/test_quickfix.vim
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3457,14 +3457,17 @@ func Xautocmd_changelist(cchar)
call assert_equal(4, line('.')) call assert_equal(4, line('.'))
autocmd! QuickFixCmdPost autocmd! QuickFixCmdPost


" Test for grep/lgrep " The grepprg may not be set on non-Unix systems
call g:Xsetlist([], 'f') if has('unix')
Xexpr 'Xtestfile1:2:Line2' " Test for grep/lgrep
autocmd QuickFixCmdPost * Xolder call g:Xsetlist([], 'f')
silent Xgrep Line5 Xtestfile2 Xexpr 'Xtestfile1:2:Line2'
call assert_equal('Xtestfile2', bufname('')) autocmd QuickFixCmdPost * Xolder
call assert_equal(5, line('.')) silent Xgrep Line5 Xtestfile2
autocmd! QuickFixCmdPost call assert_equal('Xtestfile2', bufname(''))
call assert_equal(5, line('.'))
autocmd! QuickFixCmdPost
endif


" Test for vimgrep/lvimgrep " Test for vimgrep/lvimgrep
call g:Xsetlist([], 'f') call g:Xsetlist([], 'f')
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -789,6 +789,8 @@ static char *(features[]) =


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

0 comments on commit 851332e

Please sign in to comment.