1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add uitest.

* gnu/packages/cmake.scm (uitest): New variable.

Change-Id: I0ecf7d07dc7ae58b12de47f13c9fc202dd176c5a
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-06-15 01:07:48 +02:00
committed by Sharlatan Hellseher
parent 20c31bc066
commit bc384b3a0f

View File

@@ -55,6 +55,7 @@
;;; Copyright © 2024, 2025 gemmaro <gemmaro.dev@gmail.com>
;;; Copyright © 2024 Ashvith Shetty <ashvithshetty10@gmail.com>
;;; Copyright © 2025 Jordan Moore <lockbox@struct.foo>
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4442,6 +4443,34 @@ command line filters to process a subunit stream and language bindings for
Python, C, C++ and shell. Bindings are easy to write for other languages.")
(license (list license:asl2.0 license:bsd-3)))) ;user can pick
(define-public uitest
;; XXX: No releases.
(let ((commit "d845427140cbcbce99bb6c72919199ac5f033784")
(revision "0"))
(package
(name "uitest")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Grumbel/uitest")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0bgpqakls8bs3n3v0igni9xgyrc4sp43b4bf85f7jnv1rxr88gf4"))))
(build-system cmake-build-system)
(arguments
(list
#:configure-flags
#~(list "-DBUILD_TESTS=ON")))
(native-inputs (list googletest tinycmmc))
(home-page "https://github.com/Grumbel/uitest")
(synopsis "Simple testing framework for interactive tests")
(description
"This package is a simple helper library for writing interactive tests.")
(license license:gpl3+))))
(define-public munit
;; Last release in 2016, see also <https://github.com/nemequ/munit/issues/95>.
(let ((commit "fbbdf1467eb0d04a6ee465def2e529e4c87f2118")