[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64525] [PATCH] gnu: newick-utils: Skip tests on riscv64-linux.
From: |
iyzsong |
Subject: |
[bug#64525] [PATCH] gnu: newick-utils: Skip tests on riscv64-linux. |
Date: |
Sat, 8 Jul 2023 08:40:29 +0800 |
From: 宋文武 <iyzsong@member.fsf.org>
* gnu/packages/bioinformatics.scm (newick-utils)[arguments]: Skip tests
when building on riscv64-linux.
---
gnu/packages/bioinformatics.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index f59f37b52b..9831b67868 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -7148,7 +7148,8 @@ (define-public newick-utils
"1hkw21rq1mwf7xp0rmbb2gqc0i6p11108m69i7mr7xcjl268pxnb"))))
(build-system gnu-build-system)
(arguments
- '(#:make-flags (list "CFLAGS=-O2 -g -fcommon")))
+ `(#:tests? ,(not (target-riscv64?)) ;XXX: stuck on riscv64-linux
+ #:make-flags (list "CFLAGS=-O2 -g -fcommon")))
(inputs
;; XXX: TODO: Enable Lua and Guile bindings.
;; https://github.com/tjunier/newick_utils/issues/13
base-commit: fcfdb8f05ed0228ede47e9d2a0de5b05b09dd7be
--
2.40.1
- [bug#64525] [PATCH] gnu: newick-utils: Skip tests on riscv64-linux.,
iyzsong <=