--- Begin Message ---
Subject: |
[PATCH] gnu: combinatorial-blas: Fix build failure. |
Date: |
Tue, 5 Mar 2024 10:10:16 +0100 |
* gnu/packages/maths.scm (combinatorial-blas): Add new phase.
Change-Id: Ifefb2b17e6758547d38290753a7cd338032a6abb
---
gnu/packages/maths.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 47070ded15..0c5aa63dda 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -8088,6 +8088,12 @@ (define-public combinatorial-blas
#:parallel-tests? #f ;tests use 'mpiexec -n4'
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'fix-tests
+ (lambda _
+ ;; remove failing tests (SIGFPE and SIGSEGV)
+ (substitute* "ReleaseTests/CMakeLists.txt"
+ (("^.*SpAsgnTest.*$") "")
+ (("^.*IndexingTest.*$") ""))))
(add-before 'check 'mpi-setup
,%openmpi-setup)
(add-before 'check 'test-setup
--
2.41.0
--- End Message ---
--- Begin Message ---
Subject: |
Re: [bug#69560] [PATCH] gnu: combinatorial-blas: Fix build failure. |
Date: |
Tue, 19 Mar 2024 17:25:49 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Hello!
Romain GARBAGE <romain.garbage@inria.fr> skribis:
> * gnu/packages/maths.scm (combinatorial-blas): Add new phase.
>
> Change-Id: Ifefb2b17e6758547d38290753a7cd338032a6abb
Applied with the cosmetic change below, thanks!
Ludo’.
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 959748aaf2..1b4d325649 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -8096,7 +8096,7 @@ (define-public combinatorial-blas
(modify-phases %standard-phases
(add-after 'unpack 'fix-tests
(lambda _
- ;; remove failing tests (SIGFPE and SIGSEGV)
+ ;; Skip failing tests (SIGFPE and SIGSEGV).
(substitute* "ReleaseTests/CMakeLists.txt"
(("^.*SpAsgnTest.*$") "")
(("^.*IndexingTest.*$") ""))))
--- End Message ---