guix-commits
[Top][All Lists]
Advanced

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

39/58: gnu: po4a: Skip failing test on the Hurd.


From: guix-commits
Subject: 39/58: gnu: po4a: Skip failing test on the Hurd.
Date: Wed, 19 Jul 2023 03:00:49 -0400 (EDT)

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

commit ddb951e4ae698e91ed3c29c558605a91588303c6
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 13 18:39:06 2023 +0200

    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'.
---
 gnu/packages/gettext.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm
index 947bffe3ba..b3dd844147 100644
--- a/gnu/packages/gettext.scm
+++ b/gnu/packages/gettext.scm
@@ -279,7 +279,14 @@ from Markdown files.")
           (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



reply via email to

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