libtest-memorygrowth-perl 0.05-ok1 source package in openKylin

Changelog

libtest-memorygrowth-perl (0.05-ok1) huanghe; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Fri, 29 May 2026 09:20:38 -0700

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Huanghe V3.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libtest-memorygrowth-perl_0.05.orig.tar.gz 17.1 KiB 66ec08871b0288949cb2d0244a2bbdfe24d8f66d5839605fee74e54511e19d37
libtest-memorygrowth-perl_0.05-ok1.debian.tar.xz 1.8 KiB 874ab9695c7e1a746c046963c1f0ede8f1a254b198a76acfbcf13f0f57a472fb
libtest-memorygrowth-perl_0.05-ok1.dsc 2.0 KiB 77b2a898a7cf8d7367da246dfe9fed8f8644899efa342f09489b436b8f1e62a4

Available diffs

View changes file

Binary packages built by this source

libtest-memorygrowth-perl: module to assert that code does not cause growth in memory usage

 Test::MemoryGrowth 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.
 .
 The block of code will be run a large number of times (by default 10,000),
 and the difference in memory usage by the process before and after is
 compared. If the memory usage has now increased by more than one byte per
 call, then the test fails.