guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 8b19b95599cf6221ed09aaed15b642af9dd9e5c1
Author: Yelninei <[email protected]>
AuthorDate: Fri Jan 2 08:18:25 2026 +0000

    gnu: gd: Also skip a failing test on i586-gnu.
    
    Followup to c2893113363f20f4255b0aadbc4dd094093f1c5f.
    * gnu/packages/gd.scm (gd)[arguments]: XFAIL the test on all IA-32 
platforms.
    
    Change-Id: If4d651ba5311b3deaae5d16ec2f43f550d43a957
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/gd.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm
index d20b7f3c96..1f8d75271c 100644
--- a/gnu/packages/gd.scm
+++ b/gnu/packages/gd.scm
@@ -26,6 +26,7 @@
 (define-module (gnu packages gd)
   #:use-module (guix gexp)
   #:use-module (guix packages)
+  #:use-module (guix utils)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system perl)
   #:use-module (guix download)
@@ -66,8 +67,7 @@
                                 ;; XXX: This test fails on i686-linux.
                                 ;; See <https://issues.guix.gnu.org/71996>.
                                 #$@(if (and (not (%current-target-system))
-                                            (string-prefix? "i686"
-                                                            (%current-system)))
+                                            (target-x86-32?))
                                        #~("XFAIL_TESTS=gdimagegrayscale/basic")
                                        #~()))
            #:configure-flags #~(list "--disable-static")

Reply via email to