mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: po4a: Skip failing test on the Hurd.
* gnu/packages/gettext.scm (po4a)[arguments]: When building natively on the Hurd, add phase 'skip-tests/hurd'.
This commit is contained in:
parent
8c5891d50b
commit
1005911343
1 changed files with 8 additions and 1 deletions
|
@ -279,7 +279,14 @@ (define-public po4a
|
|||
(add-before 'check 'disable-failing-tests
|
||||
(lambda _
|
||||
;; FIXME: fails despite of importing SGMLS
|
||||
(delete-file "t/fmt-sgml.t"))))))
|
||||
(delete-file "t/fmt-sgml.t")))
|
||||
#$@(if (system-hurd?)
|
||||
#~((add-after 'unpack 'skip-tests/hurd
|
||||
(lambda _
|
||||
(delete-file "t/cfg-multi.t")
|
||||
(delete-file "t/cfg-single.t")
|
||||
(delete-file "t/cfg-split.t"))))
|
||||
#~()))))
|
||||
(native-inputs
|
||||
(list gettext-minimal
|
||||
perl-module-build
|
||||
|
|
Loading…
Reference in a new issue