guix-commits
[Top][All Lists]
Advanced

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

79/89: gnu: po4a: Skip failing test on the Hurd.


From: guix-commits
Subject: 79/89: gnu: po4a: Skip failing test on the Hurd.
Date: Tue, 20 Jun 2023 05:59:03 -0400 (EDT)

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

commit a5a3b0a15784be097f83bf582834100df33a60eb
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 0cb01154d3..99a4d4edbc 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]