diff options
author | Collin J. Doering <collin@rekahsoft.ca> | 2024-11-04 10:42:21 -0500 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:31 +0200 |
commit | 84a7b7351535a544e92405534f1bfdd692c16a56 (patch) | |
tree | eb51db080637e393a54e170beb36a44da1997aa5 | |
parent | e6d83b1607ebb54471ff9860d096e166de02a7c3 (diff) |
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 <ludo@gnu.org>
-rw-r--r-- | gnu/packages/base.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index f5eaf21649..35eb324bda 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -505,6 +505,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" |