mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-18 02:05:56 +08:00
Add test for new vlog format
This commit is contained in:
@@ -4,7 +4,7 @@ Before:
|
|||||||
After:
|
After:
|
||||||
call ale#linter#Reset()
|
call ale#linter#Reset()
|
||||||
|
|
||||||
Execute(The vlog handler should parse lines correctly):
|
Execute(The vlog handler should parse old-style lines correctly):
|
||||||
AssertEqual
|
AssertEqual
|
||||||
\ [
|
\ [
|
||||||
\ {
|
\ {
|
||||||
@@ -22,3 +22,22 @@ Execute(The vlog handler should parse lines correctly):
|
|||||||
\ '** Warning: add.v(7): (vlog-2623) Undefined variable: C.',
|
\ '** Warning: add.v(7): (vlog-2623) Undefined variable: C.',
|
||||||
\ '** Error: file.v(1): (vlog-13294) Identifier must be declared with a port mode: 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.',
|
||||||
|
\ ])
|
||||||
|
|||||||
Reference in New Issue
Block a user