gnu: coreutils: Skip a test.

This test fails on btrfs more generally, not only on hurd.

* gnu/packages/base.scm (coreutils)[arguments]<#:phases>: Skip the
reflink-auto test unconditionally.

Change-Id: I27c4750f848a6b4c3c251614d95aefe41efe5d81
This commit is contained in:
John Kehayias 2025-09-12 17:09:54 -04:00
parent b0b8ecbfff
commit b28307bdf9
No known key found for this signature in database
GPG key ID: 499097AE5EA815D9

View file

@ -526,8 +526,6 @@ used to apply commands with arbitrarily long arguments.")
"tests/split/fail.sh" "tests/split/fail.sh"
;; These tests error ;; These tests error
"tests/dd/nocache.sh" "tests/dd/nocache.sh"
;; These tests can intermitently fail on btrfs
"tests/cp/reflink-auto.sh"
;; These tests fail ;; These tests fail
"tests/cp/sparse.sh" "tests/cp/sparse.sh"
"tests/cp/special-f.sh" "tests/cp/special-f.sh"
@ -573,6 +571,10 @@ used to apply commands with arbitrarily long arguments.")
(("(^| )main *\\(.*" all) (("(^| )main *\\(.*" all)
(string-append all "{\n exit (77);//")))) (string-append all "{\n exit (77);//"))))
'()) '())
;; These tests can fail on btrfs.
(substitute* "tests/cp/reflink-auto.sh"
(("^#!.*" all)
(string-append all "exit 77;\n")))
(substitute* "Makefile.in" (substitute* "Makefile.in"
;; fails on filesystems where inotify cannot be used, ;; fails on filesystems where inotify cannot be used,
;; more info in #47935 ;; more info in #47935