diff options
author | Martino Pilia <martino.pilia@gmail.com> | 2018-11-12 00:54:24 +0100 |
---|---|---|
committer | Martino Pilia <martino.pilia@gmail.com> | 2018-11-12 00:54:24 +0100 |
commit | 9e8f2b08401af5af83b181a0ca5419937f3fd0de (patch) | |
tree | b8adf70a39032c82779da00f73aaafafaec4ea38 /test/command_callback | |
parent | 0b4507ed565a53ad884dd9c7a0042daa4c782ae4 (diff) | |
download | ale-9e8f2b08401af5af83b181a0ca5419937f3fd0de.zip |
Lint ispc on disk to solve include imprecisions
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_ispc_ispc_command_callbacks.vader | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/test/command_callback/test_ispc_ispc_command_callbacks.vader b/test/command_callback/test_ispc_ispc_command_callbacks.vader index e5a0dec2..012cdee2 100644 --- a/test/command_callback/test_ispc_ispc_command_callbacks.vader +++ b/test/command_callback/test_ispc_ispc_command_callbacks.vader @@ -6,22 +6,15 @@ After: Execute(The executable should be configurable): AssertLinter 'ispc', - \ ale#Escape('ispc') - \ . ' -I ' . ale#Escape(getcwd()) - \ . ' -' + \ ale#Escape('ispc') . ' %s' let b:ale_ispc_ispc_executable = 'foo' AssertLinter 'foo', - \ ale#Escape('foo') - \ . ' -I ' . ale#Escape(getcwd()) - \ . ' -' + \ ale#Escape('foo') . ' %s' Execute(The options should be configurable): let g:ale_ispc_ispc_options = '--foo' AssertLinter 'ispc', - \ ale#Escape('ispc') - \ . ' -I ' . ale#Escape(getcwd()) - \ . ' --foo' - \ . ' -' + \ ale#Escape('ispc') . ' --foo' . ' %s' |