guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: gettext-minimal: Handle failing tests on Hurd.


From: guix-commits
Subject: 01/02: gnu: gettext-minimal: Handle failing tests on Hurd.
Date: Mon, 30 Mar 2020 07:16:06 -0400 (EDT)

janneke pushed a commit to branch wip-hurd
in repository guix.

commit ebf3e3e636870d17ac2ae839822cf7d015338eb9
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Sat Mar 7 05:28:06 2020 -0500

    gnu: gettext-minimal: Handle failing tests on Hurd.
    
    * gnu/packages/gettext.scm (gettext-minimal)[arguments]: Use make-flags to 
mark ‘test-raise’
    as XFAIL_TESTS on the Hurd.
---
 gnu/packages/gettext.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm
index 202acf2..bbde7a0 100644
--- a/gnu/packages/gettext.scm
+++ b/gnu/packages/gettext.scm
@@ -34,6 +34,7 @@
   #:use-module (guix build-system perl)
   #:use-module (gnu packages docbook)
   #:use-module (gnu packages emacs)
+  #:use-module (gnu packages hurd)
   #:use-module (gnu packages libunistring)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages perl)
@@ -106,7 +107,9 @@
                #t)))))
 
        ;; When tests fail, we want to know the details.
-       #:make-flags '("VERBOSE=yes")))
+       #:make-flags ,(if (hurd-target?)
+                         ''("VERBOSE=yes" "XFAIL_TESTS=test-raise")
+                         ''("VERBOSE=yes"))))
     (home-page "https://www.gnu.org/software/gettext/";)
     (synopsis
      "Tools and documentation for translation (used to build other packages)")



reply via email to

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