libtest-refcount-perl 0.08-2 source package in Ubuntu

Changelog

libtest-refcount-perl (0.08-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * Unconditionally build depend on libmodule-build-perl.
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 3.9.6.
  * Mark package as autopkgtest-able.

 -- gregor herrmann <email address hidden>  Fri, 29 May 2015 20:06:28 +0200

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

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-refcount-perl_0.08-2.dsc 2.3 KiB ae53d937e625da649a77baf2f72333b8a6f52c79fd4cf1299f0a874f121ebf84
libtest-refcount-perl_0.08.orig.tar.gz 17.2 KiB 90adbb5c8676953575d95e867b7aae763120de146268b7f4c00543e2c748cad7
libtest-refcount-perl_0.08-2.debian.tar.xz 2.5 KiB 1acf2f49fe8f5267b1955c9ac427cfb9d2ab42817a0310c1525eb08c7d013d44

Available diffs

No changes file available.

Binary packages built by this source

libtest-refcount-perl: Perl module to assert reference counts

 Test::Refcount asserts that an object's reference count is as expected. Since
 Perl's automatic memory management algorithm uses reference counting to keep
 track of which 'things' (ie, scalars, objects, etc.) are in use, problems
 like circular references (where a variable points to itself) can prevent Perl
 from properly freeing them.
 .
 If the assertion fails; that is, if the actual reference count is different
 to what was expected, a trace of references to the object is printed, using
 the Devel::FindRef module. It is probably most useful as part of a
 comprehensive module author test suite.