From c9846248c28f2c22660c156d4275326fe8afac80 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 15 Dec 2014 12:23:01 +0100 Subject: [PATCH] gnu: samtools: disable tests for non-64-bit systems * gnu/packages/bioinformatics.scm (samtools): disable tests for all non-64-bit systems because of an upstream bug in the test data. --- gnu/packages/bioinformatics.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index bcc5d43..1f323eb 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -111,7 +111,14 @@ BED, GFF/GTF, VCF.") "1y5p2hs4gif891b4ik20275a8xf3qrr1zh9wpysp4g8m0g1jckf2")))) (build-system gnu-build-system) (arguments - '(#:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))) + `(;; There are 87 test failures when building on non-64-bit architectures + ;; due to invalid test data. This has since been fixed upstream (see + ;; ), but as there has + ;; not been a new release we disable the tests for all non-64-bit + ;; systems. + #:tests? ,(string=? (or (%current-system) (%current-target-system)) + "x86_64-linux") + #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))) #:phases (alist-cons-after 'unpack -- 1.9.3