diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-10-07 19:55:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-07 19:55:41 +0100 |
commit | 59b34dd01774afe6309fa7e56cb68b3dcae2d43c (patch) | |
tree | cd378a67641e789553dbdfb473ecbd683386e960 /test/handler | |
parent | f2b231dd76b017d43b89ead4931a37237beb3494 (diff) | |
parent | d0e87c0df4d922c8b47e5935bb859518d347a24a (diff) | |
download | ale-59b34dd01774afe6309fa7e56cb68b3dcae2d43c.zip |
Merge pull request #2813 from werneta/master
Update vlog parser to handle new output format
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_vlog_handler.vader | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/test/handler/test_vlog_handler.vader b/test/handler/test_vlog_handler.vader index a70665db..daf3cdcf 100644 --- a/test/handler/test_vlog_handler.vader +++ b/test/handler/test_vlog_handler.vader @@ -4,7 +4,7 @@ Before: After: call ale#linter#Reset() -Execute(The vlog handler should parse lines correctly): +Execute(The vlog handler should parse old-style lines correctly): AssertEqual \ [ \ { @@ -22,3 +22,22 @@ Execute(The vlog handler should parse lines correctly): \ '** Warning: add.v(7): (vlog-2623) Undefined variable: C.', \ '** Error: file.v(1): (vlog-13294) Identifier must be declared with a port mode: C.', \ ]) + +Execute(The vlog handler should parse new-style lines correctly): + AssertEqual + \ [ + \ { + \ 'lnum': 7, + \ 'type': 'W', + \ 'text': '(vlog-2623) Undefined variable: C.' + \ }, + \ { + \ 'lnum': 1, + \ 'type': 'E', + \ 'text': '(vlog-13294) Identifier must be declared with a port mode: C.' + \ }, + \ ], + \ ale_linters#verilog#vlog#Handle(bufnr(''), [ + \ '** Warning: (vlog-2623) add.v(7): Undefined variable: C.', + \ '** Error: (vlog-13294) file.v(1): Identifier must be declared with a port mode: C.', + \ ]) |