diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-11-06 11:34:27 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-06 12:49:39 +0200 |
commit | 1970662004b6a63ef653aaf89caee27254b0a844 (patch) | |
tree | 905f4a5d14e96ad60f2bb911591cc0de7cc4b7d2 | |
parent | 0c1a6db8094dc6b20762eceae369daae545fc5e4 (diff) | |
download | guix-1970662004b6a63ef653aaf89caee27254b0a844.tar.gz guix-1970662004b6a63ef653aaf89caee27254b0a844.zip |
gnu: wfmash: Disable tests when cross-compiling.
* gnu/packages/bioinformatics.scm (wfmash)[arguments]: Also disable the
tests when cross-compiling.
Change-Id: Ie7e22a84bfa9b49d4a4b7c1b51a6b01743941af4
-rw-r--r-- | gnu/packages/bioinformatics.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index cf6d9f5c14..4d6bb4ae0e 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -23301,7 +23301,7 @@ based on the pairwise alignment of hidden Markov models (HMMs).") (arguments (list ;; Tests time out on riscv64-linux. - #:tests? (and (%current-system) + #:tests? (and (not (%current-target-system)) (not (target-riscv64?))) #:configure-flags #~(list "-DWFA_PNG_AND_TSV=ON") |