guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: gexiv2: Skip failing test on 32-bit platforms.


From: guix-commits
Subject: 02/02: gnu: gexiv2: Skip failing test on 32-bit platforms.
Date: Tue, 30 Apr 2019 12:29:39 -0400 (EDT)

civodul pushed a commit to branch version-1.0.0
in repository guix.

commit 094aaa1a1e81b6c5461c1a2aa8ccd9019faa97ec
Author: Ludovic Courtès <address@hidden>
Date:   Tue Apr 30 18:29:10 2019 +0200

    gnu: gexiv2: Skip failing test on 32-bit platforms.
    
    * gnu/packages/gnome.scm (gexiv2)[arguments]: New field.
---
 gnu/packages/gnome.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index f19b183..a9e7c20 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4629,6 +4629,14 @@ classes for commonly used data structures.")
                (base32
                 "1qbcwq89g4r67k1dj4laqj441pj4195c8hzhxn8vc6mmg8adg6kx"))))
     (build-system meson-build-system)
+    (arguments
+     ;; On 32-bit platforms, the test fails with a rounding error:
+     ;; <https://bugzilla.gnome.org/show_bug.cgi?id=775249>.  Just skip it for
+     ;; now.
+     (if (and (not (%current-target-system))
+              (member (%current-system) '("i686-linux" "armhf-linux")))
+         '(#:tests? #f)
+         '()))
     (native-inputs
      `(("glib" ,glib "bin")
        ("pkg-config" ,pkg-config)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]