X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTest-Valgrind.git;a=blobdiff_plain;f=lib%2FTest%2FValgrind%2FParser.pm;h=10eee71a55b00ca7cee1681afabbba1eab25e059;hp=46c7db85e40217bfeef7c010dffee91e8c4e2232;hb=d83358595540f8645467c2d1a2f658fa74b14c72;hpb=254ae9b36d4bdcc79ab4a2dacd3d717b5cea1f9e diff --git a/lib/Test/Valgrind/Parser.pm b/lib/Test/Valgrind/Parser.pm index 46c7db8..10eee71 100644 --- a/lib/Test/Valgrind/Parser.pm +++ b/lib/Test/Valgrind/Parser.pm @@ -27,17 +27,23 @@ use base qw; =head2 C + my $tvp = Test::Valgrind::Parser->new; + The parser constructor, called without arguments. Defaults to L. -=head2 C +=head2 C + + $tvp->start($session); Called when the C<$session> starts. Defaults to set L. -=head2 C +=head2 C + + my @args = $tvp->args($session, $fh); Returns the list of parser-specific arguments that are to be passed to the C process spawned by the session C<$session> and whose output will be captured by the filehandle C<$fh>. @@ -47,7 +53,9 @@ Defaults to the empty list. sub args { } -=head2 C +=head2 C + + $tvp->parse($session, $fh); Parse the output of the C process attached to the session C<$session> received through the filehandle C<$fh>. @@ -57,7 +65,9 @@ This method must be implemented when subclassing. sub parse; -=head2 C +=head2 C + + $tvp->finish($session); Called when the C<$session> finishes.