diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-20 13:27:58 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-20 14:22:37 -0500 |
commit | c601fa16d399a2112d0170cf88842924654ca677 (patch) | |
tree | 20178ae63493866bf490c7132a73dbeba2f5bd13 | |
parent | b3d9779cc8a42746a28a0dd60d8c1f5d56f39ebc (diff) | |
download | guix-c601fa16d399a2112d0170cf88842924654ca677.tar guix-c601fa16d399a2112d0170cf88842924654ca677.tar.gz |
gnu: Add Test-LeakTrace.
* gnu/packages/perl.scm (perl-test-leaktrace): New variable.
-rw-r--r-- | gnu/packages/perl.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index e694b1ea39..d11b92618b 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -3377,6 +3377,26 @@ testing exception-throwing code with about the same amount of typing.") automatically aggregated and output to STDOUT.") (license (package-license perl)))) +(define-public perl-test-leaktrace + (package + (name "perl-test-leaktrace") + (version "0.15") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/" + "Test-LeakTrace-" version ".tar.gz")) + (sha256 + (base32 + "0pp6ip012c474ibw0mwd7jgig34gf98bb8xlqk4wdvw1d65vbf7g")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Test-LeakTrace") + (synopsis "Traces memory leaks in Perl") + (description "Test::LeakTrace provides several functions that trace memory +leaks. This module scans arenas, the memory allocation system, so it can +detect any leaked SVs in given blocks.") + (license (package-license perl)))) + (define-public perl-test-longstring (package (name "perl-test-longstring") |