[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54869] [PATCH v2 1/7] gnu: fenics-dolfin: Honor #:tests? flag.
From: |
Paul A. Patience |
Subject: |
[bug#54869] [PATCH v2 1/7] gnu: fenics-dolfin: Honor #:tests? flag. |
Date: |
Fri, 22 Apr 2022 11:53:08 +0000 |
* gnu/packages/simulation.scm (fenics-dolfin)[arguments]: Adjust custom
'check' phase to honor the #:tests? flag.
---
gnu/packages/simulation.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm
index 3f2d8e136d..aebb6be15e 100644
--- a/gnu/packages/simulation.scm
+++ b/gnu/packages/simulation.scm
@@ -549,12 +549,13 @@ (define-public fenics-dolfin
")\n") port)))
#t))
(replace 'check
- (lambda _
- (and (invoke "make" "unittests")
- (invoke "make" "demos")
- (invoke "ctest" "-R" "unittests")
- (invoke "ctest" "-R" "demo" "-R" "serial")
- (invoke "ctest" "-R" "demo" "-R" "mpi")))))))
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (and (invoke "make" "unittests")
+ (invoke "make" "demos")
+ (invoke "ctest" "-R" "unittests")
+ (invoke "ctest" "-R" "demo" "-R" "serial")
+ (invoke "ctest" "-R" "demo" "-R" "mpi"))))))))
(home-page "https://bitbucket.org/fenics-project/dolfin/")
(synopsis "Problem solving environment for differential equations")
(description
--
2.35.1
- [bug#54869] [PATCH 0/5] gnu: python-vedo: Update to 2022.2.0 and sanity-check failures., Paul A. Patience, 2022/04/11
- [bug#54871] [PATCH 2/5] gnu: fenics: Honor #:tests? flag., Paul A. Patience, 2022/04/11
- [bug#54873] [PATCH 5/5] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/11
- [bug#54870] [PATCH 1/5] gnu: fenics-dolfin: Honor #:tests? flag., Paul A. Patience, 2022/04/11
- [bug#54872] [PATCH 3/5] gnu: python-vedo: Honor #:tests? flag., Paul A. Patience, 2022/04/11
- [bug#54874] [PATCH 4/5] gnu: python-vedo: Remove input labels., Paul A. Patience, 2022/04/11
- [bug#54869] [PATCH v2 0/7] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 3/7] gnu: fenics: Fix sanity check., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 2/7] gnu: fenics: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 1/7] gnu: fenics-dolfin: Honor #:tests? flag.,
Paul A. Patience <=
- [bug#54869] [PATCH v2 4/7] gnu: python-vedo: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 7/7] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 6/7] gnu: python-vedo: Disable sanity check., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 5/7] gnu: python-vedo: Remove input labels., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v3 0/7] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/22