1
0
Fork 0
mirror of synced 2024-06-29 20:11:09 -04:00
ultimate-vim/sources_non_forked/ale/test/linter/test_vcom.vader
2022-05-19 21:16:38 +08:00

20 lines
525 B
Plaintext

Before:
call ale#assert#SetUpLinterTest('vhdl', 'vcom')
After:
unlet! b:command_tail
call ale#assert#TearDownLinterTest()
Execute(The executable should be configurable):
AssertLinter 'vcom', ale#Escape('vcom') . ' -2008 -quiet -lint %t'
let b:ale_vhdl_vcom_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' -2008 -quiet -lint %t'
Execute(The options should be configurable):
let b:ale_vhdl_vcom_options = '--something'
AssertLinter 'vcom', ale#Escape('vcom') . ' --something %t'