blob: 6de5b184fc57c6936201adb925bff3e1de7623e8 [file] [log] [blame]
Bob Lantzbe321b62014-09-25 17:16:25 -07001# Rules for Jenkins Log Parser Plugin
2# These should work for parsing the Mininet test log
Bob Lantz17ba9c82014-09-25 17:36:11 -07003# Rules are in priority order - first matching rule
4# triggers and the rest are ignored.
Bob Lantzbe321b62014-09-25 17:16:25 -07005
Bob Lantz17ba9c82014-09-25 17:36:11 -07006# Failed full tests will be marked with FAILED
7error /FAILED/
Bob Lantzbe321b62014-09-25 17:16:25 -07008
9# Print warnings for specific sub-errors
10warn /(?i)^exception/
11warn /ERROR/
12
Bob Lantz17ba9c82014-09-25 17:36:11 -070013# Passed tests should be marked with OK
14ok /Test.*OK/
Bob Lantzbe321b62014-09-25 17:16:25 -070015
Bob Lantz17ba9c82014-09-25 17:36:11 -070016# Useful information
17info /(?i)booting/
18info /(?i)running tests/
19info /Ran.*tests in/
20