How to Install and Uninstall perl-Test-MemoryGrowth.noarch Package on Fedora 36

Last updated: October 14,2024

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

In this section, we are going to explain the necessary steps to install perl-Test-MemoryGrowth.noarch on Fedora 36

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

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

In this section, we are going to explain the necessary steps to uninstall perl-Test-MemoryGrowth.noarch on Fedora 36:

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

3. Information about the perl-Test-MemoryGrowth.noarch package on Fedora 36

Last metadata expiration check: 1:29:55 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : perl-Test-MemoryGrowth
Version : 0.04
Release : 7.fc36
Architecture : noarch
Size : 25 k
Source : perl-Test-MemoryGrowth-0.04-7.fc36.src.rpm
Repository : fedora
Summary : Assert that code does not cause growth in memory usage
URL : https://metacpan.org/release/Test-MemoryGrowth
License : GPL+ or Artistic
Description : This module provides a function to check that a given block of code does
: not result in the process consuming extra memory once it has finished.
: Despite the name of this module it does not, in the strictest sense of the
: word, test for a memory leak: that term is specifically applied to cases
: where memory has been allocated but all record of it has been lost, so it
: cannot possibly be reclaimed. While the method employed by this module can
: detect such bugs, it can also detect cases where memory is still referenced
: and reachable, but the usage has grown more than would be expected or
: necessary.