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
index f82f751..a7de57a 100644
--- a/src/testdir/test_system.vim
+++ b/src/testdir/test_system.vim
@@ -48,6 +48,10 @@
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 be361f5..d5fa549 100644
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 185,
+/**/
184,
/**/
183,