How to Install and Uninstall perl-Test-Valgrind.noarch Package on Rocky Linux 8

Last updated: May 10,2024

1. Install "perl-Test-Valgrind.noarch" package

Please follow the steps below to install perl-Test-Valgrind.noarch on Rocky Linux 8

$ sudo dnf update $ sudo dnf install perl-Test-Valgrind.noarch

2. Uninstall "perl-Test-Valgrind.noarch" package

This guide covers the steps necessary to uninstall perl-Test-Valgrind.noarch on Rocky Linux 8:

$ sudo dnf remove perl-Test-Valgrind.noarch $ sudo dnf autoremove

3. Information about the perl-Test-Valgrind.noarch package on Rocky Linux 8

Last metadata expiration check: 0:26:32 ago on Mon Sep 12 10:27:18 2022.
Available Packages
Name : perl-Test-Valgrind
Version : 1.19
Release : 12.el8
Architecture : noarch
Size : 110 k
Source : perl-Test-Valgrind-1.19-12.el8.src.rpm
Repository : epel
Summary : Generate suppressions, analyze and test any command with valgrind
URL : https://metacpan.org/release/Test-Valgrind
License : GPL+ or Artistic
Description : The Test::Valgrind::* API lets you run Perl code through the memcheck tool of
: the valgrind memory debugger, to test for memory errors and leaks. The
: Test::Valgrind module itself is a front-end to this API. If they aren't
: available yet, it will first generate suppressions for the current perl
: interpreter and store them in the portable flavor of
: ~/.perl/Test-Valgrind/suppressions/$VERSION. The actual run will then take
: place, and tests will be passed or failed according to the result of the
: analysis.
:
: The complete API is much more versatile than this. By declaring an appropriate
: Test::Valgrind::Command class, you can run any executable (that is, not only
: Perl scripts) under valgrind, generate the corresponding suppressions
: on-the-fly and convert the analysis result to TAP output so that it can be
: incorporated into your project's test suite. If you're not interested in
: producing TAP, you can output the results in whatever format you like (for
: example HTML pages) by defining your own Test::Valgrind::Action class.