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

Last updated: October 04,2024

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

Please follow the guidance below to install perl-Test-MemoryGrowth.noarch on Fedora 38

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

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

This guide covers the steps necessary to uninstall perl-Test-MemoryGrowth.noarch on Fedora 38:

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

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

Last metadata expiration check: 5:08:43 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : perl-Test-MemoryGrowth
Version : 0.04
Release : 10.fc38
Architecture : noarch
Size : 24 k
Source : perl-Test-MemoryGrowth-0.04-10.fc38.src.rpm
Repository : fedora
Summary : Assert that code does not cause growth in memory usage
URL : https://metacpan.org/release/Test-MemoryGrowth
License : GPL-1.0-or-later OR Artistic-1.0-Perl
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.