diff options
author | w0rp <w0rp@users.noreply.github.com> | 2020-08-14 00:20:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 00:20:57 +0100 |
commit | 94a968ef39cff0e50edafaa307f04b1a958ffbe4 (patch) | |
tree | 489f4625b514355086214cccf3e18308826a0f25 /test/handler | |
parent | ed69b074baa023a679cc46669f1cb96485291211 (diff) | |
parent | 1e9f870b74cee32af9eb9ea08a06bc997c78cb63 (diff) | |
download | ale-94a968ef39cff0e50edafaa307f04b1a958ffbe4.zip |
Merge pull request #2924 from patrick96/vlog-filename
verilog: Add filename to vlog linter output
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_vlog_handler.vader | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/handler/test_vlog_handler.vader b/test/handler/test_vlog_handler.vader index daf3cdcf..7262f63d 100644 --- a/test/handler/test_vlog_handler.vader +++ b/test/handler/test_vlog_handler.vader @@ -10,12 +10,14 @@ Execute(The vlog handler should parse old-style lines correctly): \ { \ 'lnum': 7, \ 'type': 'W', - \ 'text': '(vlog-2623) Undefined variable: C.' + \ 'text': '(vlog-2623) Undefined variable: C.', + \ 'filename': 'add.v' \ }, \ { \ 'lnum': 1, \ 'type': 'E', - \ 'text': '(vlog-13294) Identifier must be declared with a port mode: C.' + \ 'text': '(vlog-13294) Identifier must be declared with a port mode: C.', + \ 'filename': 'file.v' \ }, \ ], \ ale_linters#verilog#vlog#Handle(bufnr(''), [ @@ -29,12 +31,14 @@ Execute(The vlog handler should parse new-style lines correctly): \ { \ 'lnum': 7, \ 'type': 'W', - \ 'text': '(vlog-2623) Undefined variable: C.' + \ 'text': '(vlog-2623) Undefined variable: C.', + \ 'filename': 'add.v' \ }, \ { \ 'lnum': 1, \ 'type': 'E', - \ 'text': '(vlog-13294) Identifier must be declared with a port mode: C.' + \ 'text': '(vlog-13294) Identifier must be declared with a port mode: C.', + \ 'filename': 'file.v' \ }, \ ], \ ale_linters#verilog#vlog#Handle(bufnr(''), [ |