forked from ethz-asl/continuous_integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogparser_rules
More file actions
45 lines (34 loc) · 901 Bytes
/
logparser_rules
File metadata and controls
45 lines (34 loc) · 901 Bytes
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
37
38
39
40
41
42
43
44
45
# Ignore cmake warnings:
ok /^CMake/
# Some classes end with Error e.g. MarginalizationError, where the scoping :: helps to disambiguate.
ok /[Ee]rror::/
# Failures to init Gui
ok /libdc1394/
# make clean errors are also ok
ok /(ignored)/
# Errors in STXXL are ok
ok /STXXL-ERRMSG/
# ignore doxygen warnings
ok /is not documented/
# Build output:
error /error: /
# glog check failures in tests:
error /Check failure stack trace:/
# CMake errors:
error /CMake Error/
# Tests:
#start /FAILURES:/
ok /test/
ok /\[FAILURE\]/ # We parse test errors separately.
# Test segmentation fault:
error /Segmentation fault/
# Build output:
error /[Ee]rror: /
error /ld: cannot find/
error /Error [0-9]/
#error /\[FAIL\]/
warning /[Ww]arning:/
info /[Nn]ote:/
# each line containing 'c++' represents the start of a section for grouping errors and warnings found after the line.
start /ccache/
start /gcc/