janneke pushed a commit to branch core-packages-team-old in repository guix.
commit bbd3901b120d1e6b5fc670b32aca88753e5e9ebf Author: Collin J. Doering <[email protected]> AuthorDate: Mon Nov 4 10:42:21 2024 -0500 gnu: coreutils: Skip ‘cp/reflink-auto.sh’ as it can fail on Btrfs. * gnu/packages/base.scm (coreutils): Similarly to Nix (https://github.com/NixOS/nixpkgs/pull/190211), disable tests/cp/reflink-auto.sh test as it can fail on Btrfs. This was discovered by the cuirass.genenetwork.org build farm. Change-Id: If1cc3d516c5807e580ec64ab93670e30090581a7 Signed-off-by: Ludovic Courtès <[email protected]> --- gnu/packages/base.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 5be451eb80..c39ec9e93d 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -537,6 +537,8 @@ used to apply commands with arbitrarily long arguments.") "tests/split/fail.sh" ;; These tests error "tests/dd/nocache.sh" + ;; These tests can intermitently fail on btrfs + "tests/cp/reflink-auto.sh" ;; These tests fail "tests/cp/sparse.sh" "tests/cp/special-f.sh"
