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 12:04:20 -0500 Message-ID: <87zjarqy5n.fsf@netris.org> References: <878uie6pd9.fsf@gnu.org> <87k31wysbs.fsf@netris.org> <87y4qcj728.fsf@mango.localdomain> <8761dfmtq5.fsf@gnu.org> <87a92rse9s.fsf@netris.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]:38559) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xzq6w-00045t-Jq for guix-devel@gnu.org; Sat, 13 Dec 2014 12:04:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xzq6r-0003h5-PY for guix-devel@gnu.org; Sat, 13 Dec 2014 12:04:06 -0500 Received: from world.peace.net ([50.252.239.5]:36047) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xzq6r-0003gt-LH for guix-devel@gnu.org; Sat, 13 Dec 2014 12:04:01 -0500 In-Reply-To: <87a92rse9s.fsf@netris.org> (Mark H. Weaver's message of "Sat, 13 Dec 2014 11:30:55 -0500") 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: Ricardo Wurmus Cc: guix-devel@gnu.org Mark H Weaver writes: > 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-syste= m)) >> "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") Oops, we forgot to mention that there should be a comma before that first open paren, like this: #: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