[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: Add perl-test-runvalgrind
From: |
Ludovic Courtès |
Subject: |
06/07: gnu: Add perl-test-runvalgrind |
Date: |
Thu, 19 Apr 2018 05:59:05 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 9a3fb60ca30246456b2f9a4d9406ef416dfb55f9
Author: Pierre Neidhardt <address@hidden>
Date: Tue Apr 10 21:01:44 2018 +0530
gnu: Add perl-test-runvalgrind
* gnu/packages/perl-check.scm (perl-test-runvalgrind): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/perl-check.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm
index 1fd725f..832efc2 100644
--- a/gnu/packages/perl-check.scm
+++ b/gnu/packages/perl-check.scm
@@ -12,6 +12,7 @@
;;; Copyright © 2017 Petter <address@hidden>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <address@hidden>
;;; Copyright © 2018 Oleg Pykhalov <address@hidden>
+;;; Copyright © 2018 Pierre Neidhardt <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -31,6 +32,7 @@
(define-module (gnu packages perl-check)
#:use-module (guix licenses)
#:use-module (gnu packages)
+ #:use-module (gnu packages valgrind)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system perl)
@@ -1001,6 +1003,33 @@ reported, and the tests skipped.")
(description "Test::Roo provides composable, reusable tests with roles.")
(license asl2.0)))
+(define-public perl-test-runvalgrind
+ (package
+ (name "perl-test-runvalgrind")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/S/SH/SHLOMIF/Test-RunValgrind-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0cfndkn2k9pcx290wcblwmrwh1ybs0grxjlsrp8fbqqbmmjpb53h"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-module-build" ,perl-module-build)))
+ (propagated-inputs
+ `(("perl-path-tiny" ,perl-path-tiny)
+ ("perl-test-trap" ,perl-test-trap)
+ ("valgrind" ,valgrind)))
+ (home-page "http://search.cpan.org/dist/Test-RunValgrind/")
+ (synopsis "Tests that an external program is valgrind-clean")
+ (description "Test::RunValgind checks weather Valgrind does not detect
+errors (such as memory leaks) in an arbitrary binary executable.")
+ (license x11)))
+
(define-public perl-test-script
(package
(name "perl-test-script")
- branch master updated (67a51b6 -> b164233), Ludovic Courtès, 2018/04/19
- 02/07: gnu: Add spindle., Ludovic Courtès, 2018/04/19
- 01/07: gnu: Add launchmon., Ludovic Courtès, 2018/04/19
- 03/07: gnu: libfive: Add snippet, enable tests and remove obsolete phase., Ludovic Courtès, 2018/04/19
- 05/07: gnu: Add perl-io-all., Ludovic Courtès, 2018/04/19
- 04/07: gnu: Add perl-file-readbackwards., Ludovic Courtès, 2018/04/19
- 07/07: gnu: Add fortune-mod., Ludovic Courtès, 2018/04/19
- 06/07: gnu: Add perl-test-runvalgrind,
Ludovic Courtès <=