diff options
author | Martino Pilia <martino.pilia@gmail.com> | 2018-11-11 18:26:37 +0100 |
---|---|---|
committer | Martino Pilia <martino.pilia@gmail.com> | 2018-11-11 18:26:37 +0100 |
commit | 0b4507ed565a53ad884dd9c7a0042daa4c782ae4 (patch) | |
tree | f731ba52b456cfd402423115780619a98dde23aa /test/command_callback/test_ispc_ispc_command_callbacks.vader | |
parent | d30da203b91345b472e5d83f048bd42a6ca13804 (diff) | |
download | ale-0b4507ed565a53ad884dd9c7a0042daa4c782ae4.zip |
Add linter for ispc
Diffstat (limited to 'test/command_callback/test_ispc_ispc_command_callbacks.vader')
-rw-r--r-- | test/command_callback/test_ispc_ispc_command_callbacks.vader | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/command_callback/test_ispc_ispc_command_callbacks.vader b/test/command_callback/test_ispc_ispc_command_callbacks.vader new file mode 100644 index 00000000..e5a0dec2 --- /dev/null +++ b/test/command_callback/test_ispc_ispc_command_callbacks.vader @@ -0,0 +1,27 @@ +Before: + call ale#assert#SetUpLinterTest('ispc', 'ispc') + +After: + call ale#assert#TearDownLinterTest() + +Execute(The executable should be configurable): + AssertLinter 'ispc', + \ ale#Escape('ispc') + \ . ' -I ' . ale#Escape(getcwd()) + \ . ' -' + + let b:ale_ispc_ispc_executable = 'foo' + + AssertLinter 'foo', + \ ale#Escape('foo') + \ . ' -I ' . ale#Escape(getcwd()) + \ . ' -' + +Execute(The options should be configurable): + let g:ale_ispc_ispc_options = '--foo' + + AssertLinter 'ispc', + \ ale#Escape('ispc') + \ . ' -I ' . ale#Escape(getcwd()) + \ . ' --foo' + \ . ' -' |