This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 84feaca  gnu: util-linux: Disable tests when building on i586-gnu.
84feaca is described below

commit 84feaca4888c9916e1a97bb81e5d157673488b70
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sat Apr 17 22:46:34 2021 +0200

    gnu: util-linux: Disable tests when building on i586-gnu.
    
    Works around <https://bugs.gnu.org/47791>
    Reported by Maxime Devos <[email protected]>.
    
    * gnu/packages/linux.scm (util-linux)[arguments]: Pass #:tests?.
---
 gnu/packages/linux.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 13253f1..1ea9d80 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1600,6 +1600,12 @@ providing the system administrator with some help in 
common tasks.")
                                (string-append "--with-bashcompletiondir="
                                               (assoc-ref %outputs "out")
                                               "/etc/bash_completion.d"))
+
+       ;; FIXME: For now we cannot reliably run tests on GNU/Hurd:
+       ;; <https://bugs.gnu.org/47791>.
+       #:tests? ,(and (not (%current-target-system))
+                      (not (string-suffix? "-gnu" (%current-system))))
+
        #:phases (modify-phases %standard-phases
                   (add-before 'configure 'patch-build-scripts
                     (lambda* (#:key outputs #:allow-other-keys)

Reply via email to