]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blobdiff - lib/Test/Valgrind/Parser.pm
Handle segfaults during suppressions generation gracefully
[perl/modules/Test-Valgrind.git] / lib / Test / Valgrind / Parser.pm
index 1101715db99c42a2f0591cfd2bb58dce44a89d98..8e89953c5ebb15cd6e3a738dfcb3e4cbcd8648c6 100644 (file)
@@ -55,9 +55,10 @@ sub args { }
 
 =head2 C<parse>
 
-    $tvp->parse($session, $fh);
+    my $aborted = $tvp->parse($session, $fh);
 
-Parse the output of the C<valgrind> process attached to the session C<$session> received through the filehandle C<$fh>.
+Parses the output of the C<valgrind> process attached to the session C<$session> received through the filehandle C<$fh>.
+Returns true when the output indicates that C<valgrind> has aborted.
 
 This method must be implemented when subclassing.