diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-14 19:38:36 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-14 19:38:36 +0100 |
commit | fad609d067926d350b4e4ee6ecb55bdbf111a272 (patch) | |
tree | ab69f5f8f9b958c6f60b80399c79b03b09245b31 | |
parent | 2b7bc567b9238aaac682236cb4f727d0376e1302 (diff) | |
download | vim-git-fad609d067926d350b4e4ee6ecb55bdbf111a272.tar.gz |
patch 8.0.0185: system() test fails on MS-Windowsv8.0.0185
Problem: The system() test fails on MS-Windows.
Solution: Skip the test on MS-Windows.
-rw-r--r-- | src/testdir/test_system.vim | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/test_system.vim b/src/testdir/test_system.vim index f82f751a9..a7de57aac 100644 --- a/src/testdir/test_system.vim +++ b/src/testdir/test_system.vim @@ -48,6 +48,10 @@ function! Test_System() endfunction function! Test_system_exmode() + if !has('unix') + return + endif + let cmd=" -es -u NONE -c 'source Xscript' +q; echo $?" " Need to put this in a script, "catch" isn't found after an unknown " function. diff --git a/src/version.c b/src/version.c index be361f5c4..d5fa5495e 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 185, +/**/ 184, /**/ 183, |