Files
ale/test/linter/test_asm_gcc.vader
Mathis Bernadet 6d99629461
Some checks failed
CI / build_image (push) Has been cancelled
CI / test_ale (--linters-only) (push) Has been cancelled
CI / test_ale (--lua-only) (push) Has been cancelled
CI / test_ale (--neovim-07-only) (push) Has been cancelled
CI / test_ale (--neovim-08-only) (push) Has been cancelled
CI / test_ale (--vim-80-only) (push) Has been cancelled
CI / test_ale (--vim-90-only) (push) Has been cancelled
Add missing space to gcc linter (#4791). (#5088)
Co-authored-by: Mathis Bernadet <matbernadet@emi.u-bordeaux.fr>
2026-01-25 16:42:46 +09:00

21 lines
564 B
Plaintext

Before:
call ale#assert#SetUpLinterTest('asm', 'gcc')
call ale#test#SetFilename('test.cpp')
let b:command_tail = ' -x assembler'
\ . ' -o ' . (has('win32') ? 'nul': '/dev/null')
\ . ' -iquote %s:h'
\ . ' -Wall -'
After:
unlet! b:command_tail
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
AssertLinter 'gcc', ale#Escape('gcc') . b:command_tail
Execute(The executable should be configurable):
let b:ale_asm_gcc_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . b:command_tail