diff options
author | Mattia Rizzolo <mattia@debian.org> | 2017-02-03 10:05:56 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-02-03 11:43:15 +0100 |
commit | 12e23aa0efbaa21b8cba01fe2edbd83c305fb7e2 (patch) | |
tree | 0ac80d4f83cf5dbdedd2a7ce827a76efe6b3cd4e /logparse | |
parent | a2e87c7199a55bc8da942fd1a97c3e12e21625f8 (diff) | |
download | jenkins.debian.net-12e23aa0efbaa21b8cba01fe2edbd83c305fb7e2.tar.xz |
logparse: don't mark 'N: 1 tag overridden (1 warning)' as a warning
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'logparse')
-rw-r--r-- | logparse/debian-pkg-ci.rules | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/logparse/debian-pkg-ci.rules b/logparse/debian-pkg-ci.rules index 5974ea96..1ab69863 100644 --- a/logparse/debian-pkg-ci.rules +++ b/logparse/debian-pkg-ci.rules @@ -29,13 +29,12 @@ ok /perl: warning: Setting locale failed./ # suppress warnings from commit messages ok /HEAD is now at .+/ -# list of warnings here... -warning /[Ww]arning/ -warning /WARNING/ - # catch lintian warnings and errors warning /^W: / warning /^E: / +# but supress things like 'N: 1 tag overridden (1 warning)' +ok /N: \d+ tags? overridden \(\d+/ - - +# list of warnings here... +warning /[Ww]arning/ +warning /WARNING/ |