From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: bug#30024: [PATCH] core-updates: librsvg: Disable more failing tests Date: Mon, 08 Jan 2018 02:08:06 -0500 Message-ID: <87h8rwbzft.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51659) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eYRYP-0002SL-Gq for bug-guix@gnu.org; Mon, 08 Jan 2018 02:09:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eYRYM-00025j-Au for bug-guix@gnu.org; Mon, 08 Jan 2018 02:09:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:59697) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eYRYM-00025W-5v for bug-guix@gnu.org; Mon, 08 Jan 2018 02:09:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eYRYM-00046Z-0a for bug-guix@gnu.org; Mon, 08 Jan 2018 02:09:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51520) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eYRY0-0002O0-1Y for bug-guix@gnu.org; Mon, 08 Jan 2018 02:08:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eYRXw-0001tA-QT for bug-guix@gnu.org; Mon, 08 Jan 2018 02:08:40 -0500 Received: from world.peace.net ([50.252.239.5]:53708) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eYRXw-0001sd-Kz for bug-guix@gnu.org; Mon, 08 Jan 2018 02:08:36 -0500 List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 30024@debbugs.gnu.org --=-=-= Content-Type: text/plain On the core-updates branch, in librsvg, some tests fail on i686 and armhf. I've attached a proposed patch, but I haven't yet been able to test it because I no longer use binary substitutes on my systems and I'm currently having some difficulties[*] building the base packages. If someone else would like to test this and push it to core-updates, I'd be grateful. It would be sufficient to test on i686, I think. Mark [*] GNU tar's handling of sparse files is broken on btrfs filesystems and thus fails its test suite on my system, and the test suite of guile-2.2.3 hung up (no output or CPU usage for 30 minutes with a defunct guile process) on my x86_64 GuixSD system. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-UNTESTED-gnu-librsvg-Disable-more-failing-tests.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] UNTESTED: gnu: librsvg: Disable more failing tests >From e414375109364f29618ec8e71074e71f514d1765 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sun, 7 Jan 2018 21:35:35 -0500 Subject: [PATCH] UNTESTED: gnu: librsvg: Disable more failing tests. * gnu/packages/gnome.scm (librsvg)[arguments]: Rename 'remove-failing-test' phase to 'remove-failing-tests'. Disable more tests that fail on i686 and armhf. --- gnu/packages/gnome.scm | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 6d907fdf9..e5345b111 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9,7 +9,7 @@ ;;; Copyright =C2=A9 2015, 2017 Andy Wingo ;;; Copyright =C2=A9 2015 David Hashe ;;; Copyright =C2=A9 2015, 2016, 2017 Ricardo Wurmus -;;; Copyright =C2=A9 2015, 2016, 2017 Mark H Weaver +;;; Copyright =C2=A9 2015, 2016, 2017, 2018 Mark H Weaver ;;; Copyright =C2=A9 2015 David Thompson ;;; Copyright =C2=A9 2015, 2016, 2017 Efraim Flashner ;;; Copyright =C2=A9 2016, 2017 Rene Saavedra @@ -1207,11 +1207,19 @@ dealing with different structured file formats.") (("gdk_pixbuf_cache_file =3D .*$") "gdk_pixbuf_cache_file =3D $(TMPDIR)/loaders.cache\n")) #t)) - (add-after 'unpack 'remove-failing-test - ;; This test fails on aarch64. + (add-after 'unpack 'remove-failing-tests (lambda _ - (delete-file "tests/fixtures/reftests/bugs/777834-empty-text-= children.svg") - (delete-file "tests/fixtures/reftests/bugs/777834-empty-text-= children-ref.png") + (with-directory-excursion "tests/fixtures/reftests" + (for-each delete-file + '(;; This test fails on i686: + "svg1.1/masking-path-04-b.svg" + "svg1.1/masking-path-04-b-ref.png" + ;; This test fails on armhf: + "svg1.1/masking-mask-01-b.svg" + "svg1.1/masking-mask-01-b-ref.png" + ;; This test fails on aarch64: + "bugs/777834-empty-text-children.svg" + "bugs/777834-empty-text-children-ref.png"))) #t))))) (native-inputs `(("pkg-config" ,pkg-config) --=20 2.15.1 --=-=-=--