From: Vincent Pit Date: Wed, 4 Nov 2009 12:59:35 +0000 (+0100) Subject: There's no need to strip out lines containing "valgrind" from suppressions anymore X-Git-Tag: v1.12~3 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTest-Valgrind.git;a=commitdiff_plain;h=02988812caad37eabb53817242d72f65d435316f There's no need to strip out lines containing "valgrind" from suppressions anymore --- diff --git a/lib/Test/Valgrind/Parser/Suppressions/Text.pm b/lib/Test/Valgrind/Parser/Suppressions/Text.pm index 6eb2dfc..b738ea0 100644 --- a/lib/Test/Valgrind/Parser/Suppressions/Text.pm +++ b/lib/Test/Valgrind/Parser/Suppressions/Text.pm @@ -46,7 +46,6 @@ sub parse { s/^\s*#\s//; # Strip comments next if /^==/; # Valgrind info line - next if /valgrind/; # and /\Q$file\E/; s/^\s*//; # Strip leading spaces s/<[^>]+>//; # Strip tags