guix-commits
[Top][All Lists]
Advanced

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

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


From: guix-commits
Subject: 79/85: gnu: po4a: Skip failing test for the Hurd.
Date: Thu, 15 Jun 2023 02:32:45 -0400 (EDT)

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

commit ba627f5d80f072f5d5cbe91e8257e1285d82b029
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]