summaryrefslogtreecommitdiff
path: root/gnu/packages/gettext.scm
diff options
context:
space:
mode:
authorJan (janneke) Nieuwenhuizen <janneke@gnu.org>2020-10-05 11:58:16 +0200
committerJan (janneke) Nieuwenhuizen <janneke@gnu.org>2020-10-05 12:01:47 +0200
commit2fc298d19c5256eb5609aae7bd35bada59d91685 (patch)
tree1972da8a883fe4f6e3bd4a753e07f2022636c5e8 /gnu/packages/gettext.scm
parent599954c1377a4fc8936f7f341a678ecb9579a2c6 (diff)
gnu: gettext-minimal: Mark "test-raise" test XFAIL on the Hurd.
* gnu/packages/gettext.scm (gettext-minimal)[arguments]: When compiling for the Hurd, add "test-raise" to XFAIL_TESTS in make-flags.
Diffstat (limited to 'gnu/packages/gettext.scm')
-rw-r--r--gnu/packages/gettext.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm
index b9070ae818b..426be35a256 100644
--- a/gnu/packages/gettext.scm
+++ b/gnu/packages/gettext.scm
@@ -9,6 +9,7 @@
9;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org> 9;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
10;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> 10;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
11;;; Copyright © 2019 Miguel <rosen644835@gmail.com> 11;;; Copyright © 2019 Miguel <rosen644835@gmail.com>
12;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
12;;; 13;;;
13;;; This file is part of GNU Guix. 14;;; This file is part of GNU Guix.
14;;; 15;;;
@@ -34,6 +35,7 @@
34 #:use-module (guix build-system perl) 35 #:use-module (guix build-system perl)
35 #:use-module (gnu packages docbook) 36 #:use-module (gnu packages docbook)
36 #:use-module (gnu packages emacs) 37 #:use-module (gnu packages emacs)
38 #:use-module (gnu packages hurd)
37 #:use-module (gnu packages libunistring) 39 #:use-module (gnu packages libunistring)
38 #:use-module (gnu packages ncurses) 40 #:use-module (gnu packages ncurses)
39 #:use-module (gnu packages perl) 41 #:use-module (gnu packages perl)
@@ -106,7 +108,11 @@
106 #t))))) 108 #t)))))
107 109
108 ;; When tests fail, we want to know the details. 110 ;; When tests fail, we want to know the details.
109 #:make-flags '("VERBOSE=yes"))) 111 #:make-flags '("VERBOSE=yes"
112 ,@(if (hurd-target?)
113 ;; Linking to libgettextlib.so makes test-raise fail
114 '("XFAIL_TESTS=test-raise")
115 '()))))
110 (home-page "https://www.gnu.org/software/gettext/") 116 (home-page "https://www.gnu.org/software/gettext/")
111 (synopsis 117 (synopsis
112 "Tools and documentation for translation (used to build other packages)") 118 "Tools and documentation for translation (used to build other packages)")