1
0
Fork 0
mirror of synced 2024-07-02 05:21:09 -04:00
ultimate-vim/sources_non_forked/ale/test/linter/test_glslang.vader

20 lines
552 B
Plaintext
Raw Normal View History

2022-05-19 09:16:38 -04:00
Before:
call ale#assert#SetUpLinterTest('glsl', 'glslang')
After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
AssertLinter 'glslangValidator', ale#Escape('glslangValidator') . ' -C %t'
Execute(The executable should be configurable):
let b:ale_glsl_glslang_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' -C %t'
Execute(Options should work):
let g:ale_glsl_glslang_options = '--test'
AssertLinter 'glslangValidator',
\ ale#Escape('glslangValidator') . ' --test -C %t'