mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +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 @@ 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")))))))))
|
||||
(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 @@ exec " gcc "/bin/" program
|
|||
(substitute* "gnulib-tests/Makefile"
|
||||
(("^XFAIL_TESTS =")
|
||||
"XFAIL_TESTS = test-fnmatch ")))))
|
||||
'()))))))))
|
||||
'())))
|
||||
((#:make-flags flags ''())
|
||||
''()))))))
|
||||
|
||||
(define file
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue