guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/13: gnu: gappa: Honor TESTS?.


From: guix-commits
Subject: 06/13: gnu: gappa: Honor TESTS?.
Date: Mon, 3 Oct 2022 11:19:17 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 384b98028cb4be0e321320f10a1f3893e66598e0
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Oct 3 09:49:27 2022 -0400

    gnu: gappa: Honor TESTS?.
    
    * gnu/packages/algebra.scm (gappa) [phases] {check}: Honor TESTS?.
---
 gnu/packages/algebra.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index 71a4b3dc9b..f94aba1ebf 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -1427,7 +1427,9 @@ objects.")
                (replace 'install
                  (lambda _ (invoke "./remake" "-s" "-d" "install")))
                (replace 'check
-                 (lambda _ (invoke "./remake" "check"))))))
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests?
+                     (invoke "./remake" "check")))))))
     (native-inputs (list autoconf automake bison flex libtool))
     (inputs (list boost gmp mpfr))
     (home-page "https://gitlab.inria.fr/gappa/gappa";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]