about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2019-01-24 00:14:56 +0100
committerGitHub <noreply@github.com>2019-01-24 00:14:56 +0100
commitb4dc915a7fa97e274e7f213d173bcef483ccbd70 (patch)
treeb9b8bbb89f5d819831de0c7ccf4104b41cb90839 /pkgs/tools/misc
parent80ff19a45f40ddb3a3c55dbd929295fcb946eabb (diff)
parent2bcd611b7e531b1dcd43cac1975dee50975b1988 (diff)
downloadnixlib-b4dc915a7fa97e274e7f213d173bcef483ccbd70.tar
nixlib-b4dc915a7fa97e274e7f213d173bcef483ccbd70.tar.gz
nixlib-b4dc915a7fa97e274e7f213d173bcef483ccbd70.tar.bz2
nixlib-b4dc915a7fa97e274e7f213d173bcef483ccbd70.tar.lz
nixlib-b4dc915a7fa97e274e7f213d173bcef483ccbd70.tar.xz
nixlib-b4dc915a7fa97e274e7f213d173bcef483ccbd70.tar.zst
nixlib-b4dc915a7fa97e274e7f213d173bcef483ccbd70.zip
Merge pull request #54411 from voobscout/coreutils-f2fs-fix
coreutils: fix tests failing on f2fs
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 3a3486503081..84a2735dff8f 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -26,8 +26,9 @@ stdenv.mkDerivation rec {
   patches = optional stdenv.hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch;
 
   postPatch = ''
-    # The test tends to fail on btrfs and maybe other unusual filesystems.
+    # The test tends to fail on btrfs,f2fs and maybe other unusual filesystems.
     sed '2i echo Skipping dd sparse test && exit 0' -i ./tests/dd/sparse.sh
+    sed '2i echo Skipping du threshold test && exit 0' -i ./tests/du/threshold.sh
     sed '2i echo Skipping cp sparse test && exit 0' -i ./tests/cp/sparse.sh
     sed '2i echo Skipping rm deep-2 test && exit 0' -i ./tests/rm/deep-2.sh
     sed '2i echo Skipping du long-from-unreadable test && exit 0' -i ./tests/du/long-from-unreadable.sh