[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/67: gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hu
From: |
guix-commits |
Subject: |
14/67: gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hurd. |
Date: |
Tue, 18 Jul 2023 09:27:14 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit f1f6b17eaf223cc3864f20b38bf581bb8e1de58d
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Fri Jun 2 16:47:36 2023 +0200
gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hurd.
* gnu/packages/base.scm (findutils)[arguments]: When building natively on
the
Hurd, remove #:make-flags as "test-strerror_r" fails non-deterministically.
Instead, add 'skip-test' phase and skip it.
---
gnu/packages/base.scm | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 00e59e6f46..14479c4951 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -340,10 +340,16 @@ interactive means to merge two files.")
(substitute* '("tests/xargs/verbose-quote.sh"
"tests/find/exec-plus-last-file.sh")
(("#!/bin/sh")
- (string-append "#!" (which "sh")))))))
- #:make-flags ,(if (target-hurd?)
- ''("XFAIL_TESTS=test-strerror_r")
- ''())))
+ (string-append "#!" (which "sh"))))))
+ ,@(if (system-hurd?)
+ '((add-after 'unpack 'skip-tests
+ (lambda _
+ (substitute*
+ ;; This test fails non-deterministically
+ "gnulib-tests/test-strerror_r.c"
+ (("(^| )main *\\(.*" all)
+ (string-append all "{\n exit (77);//"))))))
+ '()))))
(synopsis "Operating on files matching given criteria")
(description
"Findutils supplies the basic file directory searching utilities of the
- 13/67: Revert "gnu: sed: Skip failing test on GNU/Hurd.", (continued)
- 13/67: Revert "gnu: sed: Skip failing test on GNU/Hurd.", guix-commits, 2023/07/18
- 08/67: gnu: mig: Update to 1.8+git20230520., guix-commits, 2023/07/18
- 27/67: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., guix-commits, 2023/07/18
- 31/67: gnu: emacs: Depend on libc-for-target., guix-commits, 2023/07/18
- 35/67: gnu: libpaper: Disable tests for the Hurd., guix-commits, 2023/07/18
- 43/67: gnu: cmake-minimal: Skip tests on the Hurd., guix-commits, 2023/07/18
- 50/67: gnu: pango: Support build for the Hurd., guix-commits, 2023/07/18
- 53/67: gnu: guile-2.0: Skip failing tests on the Hurd., guix-commits, 2023/07/18
- 60/67: gnu: guix: Disable some tests on the Hurd., guix-commits, 2023/07/18
- 20/67: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/07/18
- 14/67: gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hurd.,
guix-commits <=
- 26/67: gnu: libgpg-error: Skip failing test on the Hurd., guix-commits, 2023/07/18
- 41/67: gnu: zstd: Skip tests when building for the Hurd., guix-commits, 2023/07/18
- 40/67: gnu: swig: Skip tests when building for the Hurd., guix-commits, 2023/07/18
- 63/67: DRAFT hurd: Support second boot., guix-commits, 2023/07/18
- 49/67: gnu: harfbuzz: Support build for the Hurd., guix-commits, 2023/07/18
- 56/67: gnu: hurd: Support native build on the Hurd., guix-commits, 2023/07/18
- 62/67: gnu: guix: Update to 1.4.0-9.0082101981., guix-commits, 2023/07/18
- 65/67: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/07/18
- 09/67: Revert "gnu: libunistring: Fix make check for the Hurd.", guix-commits, 2023/07/18
- 21/67: gnu: python: Support native build on the Hurd., guix-commits, 2023/07/18