# HG changeset patch # User Christian Brabandt # Date 1484419503 -3600 # Node ID 234da476c4fde6fb2c402ac36f4403b8d7db1130 # Parent 3a140c0778e0d8e026b6aaaa4a638a3ecd985f8a patch 8.0.0185: system() test fails on MS-Windows commit https://github.com/vim/vim/commit/fad609d067926d350b4e4ee6ecb55bdbf111a272 Author: Bram Moolenaar Date: Sat Jan 14 19:38:36 2017 +0100 patch 8.0.0185: system() test fails on MS-Windows Problem: The system() test fails on MS-Windows. Solution: Skip the test on MS-Windows. diff --git a/src/testdir/test_system.vim b/src/testdir/test_system.vim --- 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 --- 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,