diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-02-08 00:26:00 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-02-08 00:28:25 -0500 |
commit | eb0dd063a0687301b6d805feaf4b1ada87f6e120 (patch) | |
tree | 390e7a1b62700cd7ac5734f7af5e986dec916d04 /gnu | |
parent | 63d5efd92b7e0cb86fb17c48e29f629f5b74e767 (diff) | |
download | guix-eb0dd063a0687301b6d805feaf4b1ada87f6e120.tar.gz |
gnu: Add pict.
* gnu/packages/check.scm (pict): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/check.scm | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 5a2304b436..4915a5ec88 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -35,7 +35,7 @@ ;;; Copyright © 2020 Josh Marshall <joshua.r.marshall.1991@gmail.com> ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org> -;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr> ;;; ;;; This file is part of GNU Guix. @@ -90,6 +90,44 @@ #:use-module (guix build-system trivial) #:use-module (srfi srfi-1)) +(define-public pict + (package + (name "pict") + (version "3.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Microsoft/pict") + ;; The tag name for v3.7.2 is odd ("release"); use the + ;; corresponding commit for now. + (commit "b10237099713ef0e45f222042cef01dc3507a611"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hpff8x49ixlh71sbyhj1rircf0mg95v5q9y0ys52rhiph99wy3n")))) + (build-system gnu-build-system) + (arguments + (list + #:test-target "test" + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda _ + (install-file "pict" (string-append #$output "/bin"))))))) + (native-inputs (list perl)) + (home-page "https://www.pairwise.org/") + (synopsis "Pairwise Independent Combinatorial Tool") + (description "PICT is a pairwise testing tool that generates test cases +and test configurations. With PICT, you can generate tests that are more +effective than manually generated tests and in a fraction of the time required +by hands-on test case design. PICT runs as a command line tool. It takes a +model file detailing the parameters of the interface as an input and generates +a compact set of parameter value choices that represent the test cases you +should use to get comprehensive combinatorial coverage of your parameters.") + (license license:expat))) + (define-public pedansee (package (name "pedansee") |