logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Test::Valgrind::Suppressions - Generate suppressions for given tool and command.

Author

       Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.

       You can contact me by mail or on "irc.perl.org" (vincent).

Bugs

       Please report any bugs or feature requests to "bug-test-valgrind-suppressions at rt.cpan.org", or through
       the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Valgrind>.  I will be notified,
       and then you'll automatically be notified of progress on your bug as I make changes.

Description

       This module is an helper for generating suppressions.

Methods

"generate"
           Test::Valgrind::Suppressions->generate(
            tool    => $tool,
            command => $command,
            target  => $target,
           );

       Generates suppressions for the command "$command->new_trainer" and the tool "$tool->new_trainer", and
       writes them in the file specified by $target.  The action used behind the scenes is
       Test::Valgrind::Action::Suppressions.

       Returns the status code.

   "maybe_generalize"
           my $mangled_suppression = Test::Valgrind::Suppressions->maybe_generalize(
            $session,
            $suppression,
           );

       Removes all wildcard frames at the end of the suppression.  It also replaces sequences of wildcard frames
       by '...' when "valgrind" 3.4.0 or higher is used.  Returns the mangled suppression.

   "maybe_z_demangle"
           my $demangled_symbol = Test::Valgrind::Suppressions->maybe_z_demangle(
            $symbol,
           );

       If $symbol is Z-encoded as described in "valgrind"'s include/pub_tool_redir.h, extract and decode its
       function name part.  Otherwise, $symbol is returned as is.

       This routine follows "valgrind"'s coregrind/m_demangle/demangle.c:maybe_Z_demangle.

Name

       Test::Valgrind::Suppressions - Generate suppressions for given tool and command.

See Also

       Test::Valgrind, Test::Valgrind::Command, Test::Valgrind::Tool, Test::Valgrind::Action::Suppressions.

Support

       You can find documentation for this module with the perldoc command.

           perldoc Test::Valgrind::Suppressions

Version

       Version 1.19

See Also