summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-07-13 13:48:59 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-07-13 13:48:59 -0700
commitd253b3d875d2bae84afbc141754b286e18e2fb7d (patch)
treec549a97cdcb2e7a09b680407f0b7f735c05ceafe /pkgs/tools/misc/coreutils
parent3cee0c8524f35686d8d7afa4d06d9a8704947e13 (diff)
downloadnixlib-d253b3d875d2bae84afbc141754b286e18e2fb7d.tar
nixlib-d253b3d875d2bae84afbc141754b286e18e2fb7d.tar.gz
nixlib-d253b3d875d2bae84afbc141754b286e18e2fb7d.tar.bz2
nixlib-d253b3d875d2bae84afbc141754b286e18e2fb7d.tar.lz
nixlib-d253b3d875d2bae84afbc141754b286e18e2fb7d.tar.xz
nixlib-d253b3d875d2bae84afbc141754b286e18e2fb7d.tar.zst
nixlib-d253b3d875d2bae84afbc141754b286e18e2fb7d.zip
coreutils: Skip sparse cp test as it fails reliably with btrfs on ubuntu 14.04
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index d72786fa2ff6..c9d8f0ad6029 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -24,6 +24,7 @@ let
     # The test tends to fail on btrfs and maybe other unusual filesystems.
     postPatch = stdenv.lib.optionalString (!stdenv.isDarwin) ''
       sed '2i echo Skipping dd sparse test && exit 0' -i ./tests/dd/sparse.sh
+      sed '2i echo Skipping cp sparse test && exit 0' -i ./tests/cp/sparse.sh
     '';
 
     nativeBuildInputs = [ perl ];