guix-commits
[Top][All Lists]
Advanced

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

02/08: gnu: coreutils: Handle failing tests on Hurd.


From: guix-commits
Subject: 02/08: gnu: coreutils: Handle failing tests on Hurd.
Date: Sun, 29 Mar 2020 04:29:35 -0400 (EDT)

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

commit 6b74b76a7b5a9de7dd0c64f75e4633994ebf7ded
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Thu Mar 5 14:25:08 2020 -0500

    gnu: coreutils: Handle failing tests on Hurd.
    
    * gnu/base/coreutils.scm (coreutils)[arguments]: Use make-flags to mark some
    tests XFAIL_TESTS on the Hurd.
---
 gnu/packages/base.scm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index aa52002..51b9661 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -322,6 +322,20 @@ used to apply commands with arbitrarily long arguments.")
    (outputs '("out" "debug"))
    (arguments
     `(#:parallel-build? #f            ; help2man may be called too early
+      ,@(if (hurd-target?)
+            '(#:make-flags (list
+                            (string-append "XFAIL_TESTS=tests/misc/env-S.pl"
+                                           " tests/misc/kill.sh"
+                                           " tests/misc/nice.sh"
+                                           " tests/split/fail.sh"
+                                           " test-fdutimensat"
+                                           " test-futimens"
+                                           " test-linkat"
+                                           " test-renameat"
+                                           " test-renameatu"
+                                           " test-tls"
+                                           " test-utimensat")))
+            '())
       #:phases (modify-phases %standard-phases
                  (add-before 'build 'patch-shell-references
                    (lambda _



reply via email to

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