Fix more random Windows test issues

This commit is contained in:
w0rp
2017-09-09 18:03:34 +01:00
parent 574cb11594
commit f238e15f10
4 changed files with 9 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ Before:
call ale#linter#Define('foobar', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
\ 'executable': 'echo',
\ 'executable': has('win32') ? 'cmd' : 'echo',
\ 'command': 'echo foo bar',
\})

View File

@@ -66,7 +66,7 @@ Before:
call ale#linter#Define('testft', {
\ 'name': 'x',
\ 'executable': 'true',
\ 'executable': has('win32') ? 'cmd' : 'true',
\ 'command': 'true',
\ 'callback': 'GenerateResults',
\})