libtest-weaken-perl 3.022000-1.1 source package in Ubuntu

Changelog

libtest-weaken-perl (3.022000-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Thu, 07 Jan 2021 16:39:20 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl
Jammy release universe perl

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-weaken-perl_3.022000-1.1.dsc 2.1 KiB 4636bd2a4a8706599e3b310964e429862a53f9097eb4ee33758f10ebfd8cb65f
libtest-weaken-perl_3.022000.orig.tar.gz 46.8 KiB 2631a87121310262e0e96107a6fa0ed69487b7701520773bee5fa9accc295f5b
libtest-weaken-perl_3.022000-1.1.debian.tar.xz 2.3 KiB 5e05ee6641fa5919137761a26406331e8d8bb5624af3f9faf24fefebe2622260

Available diffs

No changes file available.

Binary packages built by this source

libtest-weaken-perl: Perl module to test that freed memory objects were actually freed

 A memory leak occurs when a Perl data structure is destroyed but some of the
 contents of that structure are not freed. Leaked memory is a useless
 overhead. Leaks can significantly impact system performance. They can also
 cause an application to abend due to lack of memory. In Perl, circular
 references are a common cause of memory leaks. Circular references are
 allowed in Perl, but data structures containing circular references will leak
 memory unless the programmer takes specific measures to prevent leaks.
 Preventive measures include weakening the references and arranging to break
 the reference cycle just before the structure is destroyed. When using
 circular references, it is easy to misdesign or misimplement a scheme for
 preventing memory leaks. Mistakes of this kind have been hard to detect in a
 test suite. Test::Weaken allows easy detection of unfreed Perl data and
 allows you to examine the unfreed data, even data that would usually have
 been made inaccessible.