mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: findutils: Skip failing test on GNU/Hurd.
* gnu/packages/base.scm (findutils)[arguments]: Add #:make-flags. * gnu/packages/commencement.scm (findutils-boot0)[arguments]: Likewise.
This commit is contained in:
parent
6c16eb24d1
commit
d520fdec3c
2 changed files with 7 additions and 2 deletions
|
@ -317,7 +317,10 @@ (define-public findutils
|
|||
(substitute* '("tests/xargs/verbose-quote.sh"
|
||||
"tests/find/exec-plus-last-file.sh")
|
||||
(("#!/bin/sh")
|
||||
(string-append "#!" (which "sh")))))))))
|
||||
(string-append "#!" (which "sh")))))))
|
||||
#:make-flags ,(if (hurd-target?)
|
||||
''("XFAIL_TESTS=test-perror2")
|
||||
''())))
|
||||
(synopsis "Operating on files matching given criteria")
|
||||
(description
|
||||
"Findutils supplies the basic file directory searching utilities of the
|
||||
|
|
|
@ -2526,7 +2526,9 @@ (define findutils-boot0
|
|||
(substitute* "gnulib-tests/Makefile"
|
||||
(("^XFAIL_TESTS =")
|
||||
"XFAIL_TESTS = test-fnmatch ")))))
|
||||
'()))))))))
|
||||
'())))
|
||||
((#:make-flags flags ''())
|
||||
''()))))))
|
||||
|
||||
(define file
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue