blob: a07944f7303f948ade60759e8aa41dd7034e97e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Before:
call ale#assert#SetUpLinterTest('verilog', 'vlog')
After:
unlet! b:command_tail
call ale#assert#TearDownLinterTest()
Execute(The executable should be configurable):
AssertLinter 'vlog', ale#Escape('vlog') . ' -quiet -lint %t'
let b:ale_verilog_vlog_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' -quiet -lint %t'
Execute(The options should be configurable):
let b:ale_verilog_vlog_options = '--something'
AssertLinter 'vlog', ale#Escape('vlog') . ' --something %t'
|