File: test_vcom_handler.vader

package info (click to toggle)
vim-ale 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,764 kB
  • sloc: sh: 499; python: 311; perl: 31; makefile: 4; xml: 4; javascript: 1
file content (36 lines) | stat: -rw-r--r-- 1,071 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Before:
  runtime ale_linters/vhdl/vcom.vim

After:
  call ale#linter#Reset()

Execute(The vcom handler should parse lines correctly):
  AssertEqual
  \ [
  \   {
  \     'lnum': 218,
  \     'type': 'W',
  \     'text': '(vcom-1236) Shared variables must be of a protected type.'
  \   },
  \   {
  \     'lnum': 73,
  \     'type': 'E',
  \     'text': '(vcom-1136) Unknown identifier "aresetn".'
  \   },
  \   {
  \     'lnum': 73,
  \     'type': 'E',
  \     'text': 'Bad resolution function (STD_LOGIC) for type (error).'
  \   },
  \   {
  \     'lnum': 73,
  \     'type': 'E',
  \     'text': 'near ":": (vcom-1576) expecting ";" or ")".'
  \   },
  \ ],
  \ ale_linters#vhdl#vcom#Handle(bufnr(''), [
  \   '** Warning: ../path/to/file.vhd(218): (vcom-1236) Shared variables must be of a protected type.',
  \   '** Error: tb_file.vhd(73): (vcom-1136) Unknown identifier "aresetn".',
  \   '** Error: tb_file.vhd(73): Bad resolution function (STD_LOGIC) for type (error).',
  \   '** Error: tb_file.vhd(73): near ":": (vcom-1576) expecting ";" or ")".',
  \ ])