X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ee596c5c5e11fc79598407eaf22f83d279f7e9e..5a4872f466ebd76ddd532bdf2798554421c53df4:/.vim/bundle/ale/test/handler/test_llvm_mc_handler.vader diff --git a/.vim/bundle/ale/test/handler/test_llvm_mc_handler.vader b/.vim/bundle/ale/test/handler/test_llvm_mc_handler.vader new file mode 100644 index 00000000..990de525 --- /dev/null +++ b/.vim/bundle/ale/test/handler/test_llvm_mc_handler.vader @@ -0,0 +1,27 @@ +Before: + runtime ale_linters/asm/llvm_mc.vim + +After: + call ale#linter#Reset() + +Execute(The asm llvm-mc handler should parse lines correctly): + AssertEqual + \ [ + \ { + \ 'lnum': 10, + \ 'col' : 15, + \ 'text': "invalid operand for instruction", + \ 'type': 'E', + \ }, + \ { + \ 'lnum': 11, + \ 'col' : 2, + \ 'text': "invalid instruction mnemonic 'lpaq'", + \ 'type': 'E', + \ }, + \ ], + \ ale_linters#asm#llvm_mc#Handle(357, [ + \ "xorq %rbp, %rbp", + \ "{standard_input}:10:15: error: invalid operand for instruction", + \ "{standard input}:11:2: error: invalid instruction mnemonic 'lpaq'", + \ ])