diff options
author | João Borges <rageknify@gmail.com> | 2019-10-17 17:28:48 +0100 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2019-10-17 17:28:48 +0100 |
commit | f4070f6c43b3cb2e7463d8426a68d5a726991288 (patch) | |
tree | 42c0dae6a5b376d0871593d564f3c9a7a610c4cf /test/command_callback | |
parent | b24fd13423656e14fa266405e1f238f0ec65cfb3 (diff) | |
download | ale-f4070f6c43b3cb2e7463d8426a68d5a726991288.zip |
Add definition of c/clangd's language as C (#2791)
* Add definition of c/clangd's language as C
* Update tests for clangd to be called with '-x c'
* Change to use single quotes instead of double quotes
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_c_clangd_command_callbacks.vader | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/command_callback/test_c_clangd_command_callbacks.vader b/test/command_callback/test_c_clangd_command_callbacks.vader index dc52097d..15726163 100644 --- a/test/command_callback/test_c_clangd_command_callbacks.vader +++ b/test/command_callback/test_c_clangd_command_callbacks.vader @@ -4,14 +4,18 @@ Before: Save &filetype let &filetype = 'c' + let b:command_tail = ' -x c' + After: + unlet! b:command_tail + call ale#assert#TearDownLinterTest() Execute(The language string should be correct): AssertLSPLanguage 'c' Execute(The default executable should be correct): - AssertLinter 'clangd', ale#Escape('clangd') + AssertLinter 'clangd', ale#Escape('clangd') . b:command_tail Execute(The project root should be detected correctly): call ale#test#SetFilename(tempname() . '/dummy.c') @@ -25,10 +29,10 @@ Execute(The project root should be detected correctly): Execute(The executable should be configurable): let g:ale_c_clangd_executable = 'foobar' - AssertLinter 'foobar', ale#Escape('foobar') + AssertLinter 'foobar', ale#Escape('foobar') . b:command_tail Execute(The options should be configurable): let b:ale_c_clangd_options = '-compile-commands-dir=foo' - AssertLinter 'clangd', ale#Escape('clangd') . ' ' . b:ale_c_clangd_options + AssertLinter 'clangd', ale#Escape('clangd') . b:command_tail . ' ' . b:ale_c_clangd_options |