From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60994) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1csT0I-000781-3x for guix-patches@gnu.org; Mon, 27 Mar 2017 07:40:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1csT0E-0001jA-6Q for guix-patches@gnu.org; Mon, 27 Mar 2017 07:40:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48703) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1csT0E-0001j6-3v for guix-patches@gnu.org; Mon, 27 Mar 2017 07:40:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1csT0D-0006Fs-Sq for guix-patches@gnu.org; Mon, 27 Mar 2017 07:40:01 -0400 Subject: bug#26256: [PATCH 2/6] gnu: xmlstarlet: Disable failing tests. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170325203017.14931-1-mbakke@fastmail.com> <20170325203017.14931-2-mbakke@fastmail.com> Date: Mon, 27 Mar 2017 13:39:31 +0200 In-Reply-To: <20170325203017.14931-2-mbakke@fastmail.com> (Marius Bakke's message of "Sat, 25 Mar 2017 21:30:13 +0100") Message-ID: <877f3bkky4.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Marius Bakke Cc: 26256@debbugs.gnu.org Marius Bakke skribis: > * gnu/packages/xml.scm (xmlstarlet)[arguments]: Add phase to disable two = tests. > --- > gnu/packages/xml.scm | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm > index 66eb63ade..bd2748287 100644 > --- a/gnu/packages/xml.scm > +++ b/gnu/packages/xml.scm > @@ -1033,6 +1033,16 @@ C++ programming language.") > (base32 > "1jp737nvfcf6wyb54fla868yrr39kcbijijmjpyk4lrpyg23in0m")))) > (build-system gnu-build-system) > + (arguments > + '(#:phases > + (modify-phases %standard-phases > + (add-before 'check 'drop-failing-tests > + (lambda _ > + ;; FIXME: Why are these tests failing. If there=E2=80=99s a test log excerpt that would be worth adding in this comment, that=E2=80=99s even better. Otherwise go for it! Ludo=E2=80=99.