mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: coreutils: Disable the test-tls tests on the hurd.
These tests seem to lead to both consistent and inconsistent failures, so marking them as XFAIL as is done with some other tests doesn't help. So this commit means that they're skipped. * gnu/packages/base.scm (coreutils)[arguments]: Disable the test-tls tests on the hurd.
This commit is contained in:
parent
db670af37d
commit
e26b529b1a
1 changed files with 7 additions and 1 deletions
|
@ -415,7 +415,13 @@ (define-public coreutils
|
|||
,@(if (hurd-target?)
|
||||
'((substitute* "Makefile.in"
|
||||
;; this test hangs
|
||||
(("^ *tests/misc/timeout-group.sh.*") "")))
|
||||
(("^ *tests/misc/timeout-group.sh.*") ""))
|
||||
(substitute* "gnulib-tests/Makefile.in"
|
||||
;; This test sometimes fails and sometimes
|
||||
;; passes, but it does this consistently, so
|
||||
;; there might be some environmental factor
|
||||
;; here
|
||||
((" test-tls\\$\\(EXEEXT\\) ") " ")))
|
||||
'())
|
||||
(substitute* "Makefile.in"
|
||||
;; fails on filesystems where inotify cannot be used,
|
||||
|
|
Loading…
Reference in a new issue