mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: gd: Skip failing test on i686-linux.
* gnu/packages/gd.scm (gd)[arguments]: Add “XFAIL_TESTS” to #:make-flags on i686-linux. Change-Id: I52a9cfeb352b0ec3fce4ff1f82f43c5f7bef6ef0
This commit is contained in:
parent
43e6dc3cda
commit
c289311336
1 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013, 2016, 2023 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2013, 2016, 2023-2024 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
|
||||
|
@ -61,7 +61,15 @@ (define-public gd
|
|||
(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 <https://issues.guix.gnu.org/71996>.
|
||||
#$@(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
|
||||
|
|
Loading…
Reference in a new issue