summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-01-18 14:54:42 +0000
committerLudovic Courtès <ludo@gnu.org>2010-01-18 14:54:42 +0000
commitbf1ffcc595573734bfb6b44e1b98e0553e766816 (patch)
tree7b292a483695fffd39767b1f9a698d4cb7d25e89 /pkgs/tools/misc/coreutils
parentfa5a119fcd7a44830c3b15fe126cc75a4b98973d (diff)
downloadnixlib-bf1ffcc595573734bfb6b44e1b98e0553e766816.tar
nixlib-bf1ffcc595573734bfb6b44e1b98e0553e766816.tar.gz
nixlib-bf1ffcc595573734bfb6b44e1b98e0553e766816.tar.bz2
nixlib-bf1ffcc595573734bfb6b44e1b98e0553e766816.tar.lz
nixlib-bf1ffcc595573734bfb6b44e1b98e0553e766816.tar.xz
nixlib-bf1ffcc595573734bfb6b44e1b98e0553e766816.tar.zst
nixlib-bf1ffcc595573734bfb6b44e1b98e0553e766816.zip
coreutils: Disable tests on non-GNU platforms.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19521
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 67dd02ab422e..d588c49e5c38 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -11,8 +11,10 @@ stdenv.mkDerivation rec {
   buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;
 
   # The tests are known broken on Cygwin
-  # (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025).
-  doCheck = (stdenv.system != "i686-cygwin");
+  # (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025),
+  # Darwin (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19351),
+  # and {Open,Free}BSD.
+  doCheck = (stdenv ? glibc);
 
   meta = {
     homepage = http://www.gnu.org/software/coreutils/;