1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00

coreutils: Skip sparse cp test as it fails reliably with btrfs on ubuntu 14.04

This commit is contained in:
William A. Kennington III 2015-07-13 13:48:59 -07:00
parent 3cee0c8524
commit d253b3d875

View file

@ -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 ];