From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCH] gnu: Add samtools Date: Sat, 13 Dec 2014 11:30:55 -0500 Message-ID: <87a92rse9s.fsf@netris.org> References: <878uie6pd9.fsf@gnu.org> <87k31wysbs.fsf@netris.org> <87y4qcj728.fsf@mango.localdomain> <8761dfmtq5.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33721) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xzpav-0004IA-Hb for guix-devel@gnu.org; Sat, 13 Dec 2014 11:31:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xzpaq-0001ru-Cw for guix-devel@gnu.org; Sat, 13 Dec 2014 11:31:01 -0500 In-Reply-To: <8761dfmtq5.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Sat, 13 Dec 2014 16:53:38 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel@gnu.org ludo@gnu.org (Ludovic Court=C3=A8s) writes: > Ricardo Wurmus skribis: > >> Can we disable the test suite for certain architectures? Or would they >> have to be disabled completely? > > Yes, just pass something like in =E2=80=98arguments=E2=80=99: > > #:tests? (not (string=3D? (or (%current-system) (%current-target-system= )) > "i686-linux")) Since it fails the same way on mips64el, I suggest this instead: #:tests? (string=3D? (or (%current-system) (%current-target-system)) "x86_64-linux") > Also please add a comment above linking to the upstream bug report. Thanks! Mark