From bf1ffcc595573734bfb6b44e1b98e0553e766816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 18 Jan 2010 14:54:42 +0000 Subject: [PATCH] coreutils: Disable tests on non-GNU platforms. svn path=/nixpkgs/branches/stdenv-updates/; revision=19521 --- pkgs/tools/misc/coreutils/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 67dd02ab422..d588c49e5c3 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/;