summaryrefslogtreecommitdiff
path: root/test/handler/test_clang_handler.vader
blob: cc8eabd04078d595572da212b40682337b5fea1b (plain)
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
Execute(clang errors from included files should be parsed correctly):
  AssertEqual
  \ [
  \   {
  \     'lnum': 1,
  \     'col': 1,
  \     'filename': './b.h',
  \     'type': 'E',
  \     'text': 'expected identifier or ''(''',
  \   },
  \   {
  \     'lnum': 3,
  \     'text': 'Error found in header. See :ALEDetail',
  \     'detail': join([
  \       'In file included from <stdin>:3:',
  \       'In file included from ./a.h:1:',
  \       './b.h:1:1: error: expected identifier or ''(''',
  \       '{{{',
  \       '^',
  \     ], "\n"),
  \   },
  \ ],
  \ ale#handlers#gcc#HandleGCCFormatWithIncludes(347, [
  \   'In file included from <stdin>:3:',
  \   'In file included from ./a.h:1:',
  \   './b.h:1:1: error: expected identifier or ''(''',
  \   '{{{',
  \   '^',
  \   '1 error generated.',
  \ ])