X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FTest%2FValgrind%2FParser%2FSuppressions%2FText.pm;h=4a1db955a5b71bb5c897858cb773de73dbd0962f;hb=91e50cd9ec30efd628f6221947d7a523eebb2248;hp=6142e4278d01b484eb7bcb0a24ed0fd88d3b3a22;hpb=b90507ca14e09b450113be587662f1b66d2671cc;p=perl%2Fmodules%2FTest-Valgrind.git diff --git a/lib/Test/Valgrind/Parser/Suppressions/Text.pm b/lib/Test/Valgrind/Parser/Suppressions/Text.pm index 6142e42..4a1db95 100644 --- a/lib/Test/Valgrind/Parser/Suppressions/Text.pm +++ b/lib/Test/Valgrind/Parser/Suppressions/Text.pm @@ -1,11 +1,11 @@ -package Test::Valgrind::Tool::SuppressionsParser; +package Test::Valgrind::Parser::Suppressions::Text; use strict; use warnings; =head1 NAME -Test::Valgrind::Tool::SuppressionsParser - Mock Test::Valgrind::Tool for parsing valgrind suppressions. +Test::Valgrind::Parser::Suppressions::Text - Parse valgrind suppressions output as text blocks. =head1 VERSION @@ -38,22 +38,22 @@ The solution is to either put C first in the C<@ISA> list sub new { shift->_croak('This mock tool isn\'t meant to be used directly') } -=head2 C +=head2 C Generated reports are C objects. Their C member contains the raw text of the suppression. =cut -sub report_class_suppressions { 'Test::Valgrind::Report::Suppressions' } +sub report_class { 'Test::Valgrind::Report::Suppressions' } -=head2 C +=head2 C Parses the filehandle C<$fh> fed with the output of F and sends a report to the session C<$session> for each suppression. =cut -sub parse_suppressions { +sub parse { my ($self, $sess, $fh) = @_; my ($s, $in) = ('', 0); @@ -141,7 +141,7 @@ I will be notified, and then you'll automatically be notified of progress on you You can find documentation for this module with the perldoc command. - perldoc Test::Valgrind::Tool::SuppressionsParser + perldoc Test::Valgrind::Parser::Suppressions::Text =head1 COPYRIGHT & LICENSE @@ -151,7 +151,7 @@ This program is free software; you can redistribute it and/or modify it under th =cut -# End of Test::Valgrind::Tool::SuppressionsParser +# End of Test::Valgrind::Parser::Suppressions::Text package Test::Valgrind::Report::Suppressions;