diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-03 19:16:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-03 19:16:00 +0200 |
commit | 851332ea9cdabf24980a7f7c293da81fa990f864 (patch) | |
tree | a5eafaab0e0c0fef01fb076c61f814379e205ab8 | |
parent | b2e0c94a4d27e3e6222d26f13e0418a85cab21a2 (diff) | |
download | vim-git-851332ea9cdabf24980a7f7c293da81fa990f864.tar.gz |
patch 8.1.0145: test with grep is failing on MS-Windowsv8.1.0145
Problem: Test with grep is failing on MS-Windows.
Solution: Skip the test.
-rw-r--r-- | src/testdir/test_quickfix.vim | 19 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 13 insertions, 8 deletions
diff --git a/src/testdir/test_quickfix.vim b/src/testdir/test_quickfix.vim index 5e8b99396..a4006b07d 100644 --- a/src/testdir/test_quickfix.vim +++ b/src/testdir/test_quickfix.vim @@ -3457,14 +3457,17 @@ func Xautocmd_changelist(cchar) call assert_equal(4, line('.')) autocmd! QuickFixCmdPost - " Test for grep/lgrep - call g:Xsetlist([], 'f') - Xexpr 'Xtestfile1:2:Line2' - autocmd QuickFixCmdPost * Xolder - silent Xgrep Line5 Xtestfile2 - call assert_equal('Xtestfile2', bufname('')) - call assert_equal(5, line('.')) - autocmd! QuickFixCmdPost + " The grepprg may not be set on non-Unix systems + if has('unix') + " Test for grep/lgrep + call g:Xsetlist([], 'f') + Xexpr 'Xtestfile1:2:Line2' + autocmd QuickFixCmdPost * Xolder + silent Xgrep Line5 Xtestfile2 + call assert_equal('Xtestfile2', bufname('')) + call assert_equal(5, line('.')) + autocmd! QuickFixCmdPost + endif " Test for vimgrep/lvimgrep call g:Xsetlist([], 'f') diff --git a/src/version.c b/src/version.c index 07e34fc37..ea289c7ec 100644 --- a/src/version.c +++ b/src/version.c @@ -790,6 +790,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 145, +/**/ 144, /**/ 143, |