blob: a0caaa481267068dd18672e2ecdccb039f9a7367 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
Before:
call ale#assert#SetUpLinterTest('llvm', 'llc')
function! AssertHasPrefix(str, prefix) abort
let msg = printf("'%s' is expected to be prefixed with '%s'", a:str, a:prefix)
AssertEqual stridx(a:str, a:prefix), 0, msg
endfunction
After:
delfunction AssertHasPrefix
call ale#assert#TearDownLinterTest()
Execute(The llc command should be customizable):
AssertLinter 'llc',
\ ale#Escape('llc') . ' -filetype=null -o=' . g:ale#util#nul_file
let g:ale_llvm_llc_executable = 'llc-5.0'
AssertLinter 'llc-5.0',
\ ale#Escape('llc-5.0') . ' -filetype=null -o=' . g:ale#util#nul_file
|