File: control

package info (click to toggle)
libtest-refcount-perl 0.10-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 136 kB
  • sloc: perl: 211; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,464 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Source: libtest-refcount-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libmodule-build-perl
Build-Depends-Indep: perl
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libtest-refcount-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libtest-refcount-perl.git
Homepage: https://metacpan.org/release/Test-Refcount
Rules-Requires-Root: no

Package: libtest-refcount-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
# libdevel-mat-perl has build issues, cf. #1026046
# libdevel-mat-perl
Recommends: libdevel-mat-dumper-perl
Description: 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.