1
0
forked from aniani/vim

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.
This commit is contained in:
Bram Moolenaar
2017-01-14 19:38:36 +01:00
parent 2b7bc567b9
commit fad609d067
2 changed files with 6 additions and 0 deletions

View File

@@ -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.

View File

@@ -764,6 +764,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
185,
/**/
184,
/**/