guix-commits
[Top][All Lists]
Advanced

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

79/84: gnu: po4a: Skip failing test for the Hurd.


From: guix-commits
Subject: 79/84: gnu: po4a: Skip failing test for the Hurd.
Date: Wed, 14 Jun 2023 06:24:02 -0400 (EDT)

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

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

    gnu: po4a: Skip failing test for the Hurd.
    
    * gnu/packages/gettext.scm (po4a)[arguments]: When building for 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 95a5312362..cefeee71e5 100644
--- a/gnu/packages/gettext.scm
+++ b/gnu/packages/gettext.scm
@@ -280,7 +280,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 (target-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]