Get some more random tests to work on Windows

This commit is contained in:
w0rp 2017-09-08 21:51:49 +01:00
parent 1c5253b928
commit 26195efa0b
2 changed files with 7 additions and 3 deletions

View File

@ -35,7 +35,7 @@ Before:
call ale#linter#Define('foobar', {
\ 'name': 'testlinter',
\ 'executable': 'echo',
\ 'executable': has('win32') ? 'cmd' : 'echo',
\ 'callback': 'TestCallback',
\ 'command_callback': 'TestCommandCallback',
\})
@ -100,7 +100,9 @@ Execute(ALE should create and delete directories for ale#engine#CreateDirectory(
" We should get the correct file permissions.
" We want to ensure that the directory is not readable by 'other'
AssertEqual 'rwxr-x---', getfperm(b:dir)
if has('unix')
AssertEqual 'rwxr-x---', getfperm(b:dir)
endif
" The two directories shouldn't be the same.
AssertNotEqual b:dir2, b:dir

View File

@ -1,2 +1,4 @@
Execute($TMPDIR should be set to a default value if unset):
AssertEqual '/tmp', $TMPDIR
if has('unix')
AssertEqual '/tmp', $TMPDIR
endif