[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/18: gnu: findutils-boot0: Fix test suite on some systems.
From: |
guix-commits |
Subject: |
13/18: gnu: findutils-boot0: Fix test suite on some systems. |
Date: |
Fri, 12 Mar 2021 03:22:41 -0500 (EST) |
efraim pushed a commit to branch wip-ppc
in repository guix.
commit 50305b0cc364c9fc19ccaf17ef9bce1002cb666a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Mar 9 10:47:44 2021 +0200
gnu: findutils-boot0: Fix test suite on some systems.
This is a follow-up to 3a0c7e7d1e9b4e0053f3dfa266c69bcc5e7ac61e.
* gnu/packages/commencement.scm (findutils-boot0)[arguments]: Only add
custom 'skip-fnmatch-test phase on x86_64-linux and i686-linux.
---
gnu/packages/commencement.scm | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index e8ea822..97a2fce 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2509,14 +2509,17 @@ exec " gcc "/bin/" program
,flags))
((#:phases phases '%standard-phases)
`(modify-phases ,phases
- (add-before 'check 'skip-fnmatch-test
- (lambda _
- ;; 'test-fnmatch' fails when using glibc-mesboot@2.16, due
- ;; to incorrect handling of the [:alpha:] regexp character
- ;; class. Ignore it.
- (substitute* "gnulib-tests/Makefile"
- (("^XFAIL_TESTS =")
- "XFAIL_TESTS = test-fnmatch ")))))))))))
+ ;; 'test-fnmatch' fails when using glibc-mesboot@2.16, due
+ ;; to incorrect handling of the [:alpha:] regexp character
+ ;; class. Ignore it.
+ ,@(if (string=? (%current-system)
+ (or "x86_64-linux" "i686-linux"))
+ '((add-before 'check 'skip-fnmatch-test
+ (lambda _
+ (substitute* "gnulib-tests/Makefile"
+ (("^XFAIL_TESTS =")
+ "XFAIL_TESTS = test-fnmatch ")))))
+ '()))))))))
(define file
(package
- branch wip-ppc created (now a82a550), guix-commits, 2021/03/12
- 02/18: gnu: binutils-final: Provide bash for binary on powerpc-linux., guix-commits, 2021/03/12
- 04/18: gnu: gd: Fix tests., guix-commits, 2021/03/12
- 05/18: gnu: mesa: Add support for powerpc-linux., guix-commits, 2021/03/12
- 01/18: gnu: bootstrap: Add support for powerpc-linux., guix-commits, 2021/03/12
- 03/18: gnu: datefudge: Only use glibc-2.31 workaround on supported platforms., guix-commits, 2021/03/12
- 06/18: gnu: Add mac-fdisk., guix-commits, 2021/03/12
- 08/18: build: qemu-command: Add support for powerpc., guix-commits, 2021/03/12
- 09/18: gnu: mercurial: Skip tests on powerpc-linux., guix-commits, 2021/03/12
- 11/18: gnu: glibc: Fix ldd path on powerpc*., guix-commits, 2021/03/12
- 13/18: gnu: findutils-boot0: Fix test suite on some systems.,
guix-commits <=
- 07/18: gnu: american-fuzzy-lop: Add support for powerpc-linux., guix-commits, 2021/03/12
- 14/18: gnu: binutils-boot0: Adjust test suite on powerpc-linux., guix-commits, 2021/03/12
- 15/18: gnu: binutils: Adjust test suite on powerpc-linux., guix-commits, 2021/03/12
- 16/18: squash! binutils in base.scm, guix-commits, 2021/03/12
- 10/18: gnu: nss: Skip tests on powerpc-linux., guix-commits, 2021/03/12
- 12/18: gnu: guile-3.0: Fix building on powerpc-linux., guix-commits, 2021/03/12
- 17/18: squash! binutils in base.scm, guix-commits, 2021/03/12
- 18/18: gnu: libffi: Don't apply patch twice., guix-commits, 2021/03/12