f4070f6c43
* 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
38 lines
995 B
Text
38 lines
995 B
Text
Before:
|
|
call ale#assert#SetUpLinterTest('c', 'clangd')
|
|
|
|
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') . b:command_tail
|
|
|
|
Execute(The project root should be detected correctly):
|
|
call ale#test#SetFilename(tempname() . '/dummy.c')
|
|
|
|
AssertLSPProject ''
|
|
|
|
call ale#test#SetFilename('clangd_paths/dummy.c')
|
|
|
|
AssertLSPProject ale#path#Simplify(g:dir . '/clangd_paths')
|
|
|
|
Execute(The executable should be configurable):
|
|
let g:ale_c_clangd_executable = '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:command_tail . ' ' . b:ale_c_clangd_options
|
|
|