diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-08-14 23:32:14 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-08-14 23:32:14 +0200 |
commit | bcf740402e9aadc9582d3ee11e4a03fdfd8c7f3c (patch) | |
tree | 5e2c0d2b7e6fbf06d7f4b4e7e8988d4dcb92c43b /logparse | |
parent | f9314420e646bf68b5d7154a33a4702d65d8e102 (diff) | |
download | jenkins.debian.net-bcf740402e9aadc9582d3ee11e4a03fdfd8c7f3c.tar.xz |
diffoscope test job: ignore some unrelated warnings
Diffstat (limited to 'logparse')
-rw-r--r-- | logparse/debian-diffoscope.rules | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/logparse/debian-diffoscope.rules b/logparse/debian-diffoscope.rules new file mode 100644 index 00000000..22123551 --- /dev/null +++ b/logparse/debian-diffoscope.rules @@ -0,0 +1,29 @@ +# see https://wiki.jenkins-ci.org/display/JENKINS/Log+Parser+Plugin + +ok /not really/ + +ok /Error while decoding stream/ + +# ignore images… +ok /warning\.png/ + +# match line starting with 'error ', case-insensitive +error /(?i)^error / + +# ignore some stuff +ok /update-binfmts: warning:/ +ok /update-rc.d: warning: start and stop actions are no longer supported/ +ok /E: Can not write log (Is /dev/pts mounted?/ + +# list of warnings here... +warning /[Ww]arning/ +warning /WARNING/ + +# catch lintian warnings and errors +warning /^W: / +warning /^E: / + + +# create a quick access link to lines in the report containing 'INFO' +info /INFO/ + |