[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/09: gnu: bear: Respect TESTS?.
From: |
guix-commits |
Subject: |
05/09: gnu: bear: Respect TESTS?. |
Date: |
Sat, 18 Dec 2021 18:49:27 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 9c426e19cf1dc633a8e7d927b53299504fff9bf4
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Dec 19 00:31:34 2021 +0100
gnu: bear: Respect TESTS?.
* gnu/packages/build-tools.scm (bear)[arguments]: Accept and respect a
TESTS? keyword in the 'check phase.
---
gnu/packages/build-tools.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index eb6c32d..18a07f0 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -123,10 +123,11 @@ makes a few sacrifices to acquire fast full and
incremental build times.")
(add-before 'check 'set-build-environment
(lambda _
(setenv "CC" "gcc")))
- ;; TODO: Test Configuration is Incomplete
(replace 'check
- (lambda _
- (invoke "ctest"))))))
+ ;; TODO: Test configuration is incomplete.
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "ctest")))))))
(inputs
`(("c-ares" ,c-ares)
("fmt" ,fmt)
- branch master updated (f6e79ef -> b3a0db7), guix-commits, 2021/12/18
- 02/09: gnu: minisign: Update to 0.10., guix-commits, 2021/12/18
- 01/09: gnu: minisign: Fetch source from Git., guix-commits, 2021/12/18
- 04/09: gnu: bear: Update to 3.0.17., guix-commits, 2021/12/18
- 05/09: gnu: bear: Respect TESTS?.,
guix-commits <=
- 08/09: gnu: keyutils: Omit static library., guix-commits, 2021/12/18
- 07/09: gnu: keyutils: Update to 1.6.3., guix-commits, 2021/12/18
- 03/09: gnu: inxi-minimal: Update to 3.3.11-1., guix-commits, 2021/12/18
- 06/09: gnu: i3status-rust: Fix build., guix-commits, 2021/12/18
- 09/09: gnu: diffoscope: Remove input labels., guix-commits, 2021/12/18