coreutils: Disable tests on non-GNU platforms.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19521
This commit is contained in:
Ludovic Courtès 2010-01-18 14:54:42 +00:00
parent fa5a119fcd
commit bf1ffcc595

View file

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