From c2893113363f20f4255b0aadbc4dd094093f1c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 8 Jul 2024 15:21:49 +0200 Subject: [PATCH] gnu: gd: Skip failing test on i686-linux. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/gd.scm (gd)[arguments]: Add “XFAIL_TESTS” to #:make-flags on i686-linux. Change-Id: I52a9cfeb352b0ec3fce4ff1f82f43c5f7bef6ef0 --- gnu/packages/gd.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index 2c5ba59915..98d34cfa71 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2016, 2023 Ludovic Courtès +;;; Copyright © 2013, 2016, 2023-2024 Ludovic Courtès ;;; Copyright © 2015, 2016 Mark H Weaver ;;; Copyright © 2015 Eric Bavier ;;; Copyright © 2016, 2017 Leo Famulari @@ -61,7 +61,15 @@ (arguments ;; As recommended by github.com/libgd/libgd/issues/278 to fix rounding ;; issues on aarch64 and other architectures. - (list #:make-flags #~(list "CFLAGS=-ffp-contract=off") + (list #:make-flags #~(list "CFLAGS=-ffp-contract=off" + + ;; XXX: This test fails on i686-linux. + ;; See . + #$@(if (and (not (%current-target-system)) + (string-prefix? "i686" + (%current-system))) + #~("XFAIL_TESTS=gdimagegrayscale/basic") + #~())) #:configure-flags #~(list "--disable-static") #:phases #~(modify-phases %standard-phases