From 95b4594a2ed19e6e1553a1b2a581391ef1b8eaa3 Mon Sep 17 00:00:00 2001 From: Antero Mejr Date: Sun, 4 Jun 2023 17:42:05 +0000 Subject: gnu: Add perl-test-fork. * gnu/packages/perl-check.scm (perl-test-fork): New variable. Signed-off-by: Danny Milosavljevic --- gnu/packages/perl-check.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm index 44bbc2fcc6..7672e82f9b 100644 --- a/gnu/packages/perl-check.scm +++ b/gnu/packages/perl-check.scm @@ -736,6 +736,29 @@ (define-public perl-test-files contents of a file is equal to a particular string.") (license perl-license))) +(define-public perl-test-fork + (package + (name "perl-test-fork") + (version "0.02") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/M/MS/MSCHWERN/Test-Fork-" version + ".tar.gz")) + (sha256 + (base32 + "0gnh8m81fdrwmzy1fix12grfq7sf7nn0gbf24zlap1gq4kxzpzpw")))) + (build-system perl-build-system) + (native-inputs (list perl-module-build)) + (home-page "https://metacpan.org/release/Test-Fork") + (synopsis "Test code which forks") + (description + "Testing code which forks is problematic because each test has a number +associated with it. Coordinating the test number amongst the parent and child +processes is complicated. @code{Test::Fork} provides a function to smooth over +the complications.") + (license perl-license))) + (define-public perl-test-harness (package (name "perl-test-harness") -- cgit v1.2.3