GNU Automake 1.11.x: Disable tests on FreeBSD.

svn path=/nixpkgs/trunk/; revision=31433
This commit is contained in:
Ludovic Courtès 2012-01-08 15:41:17 +00:00
parent 65715f2e98
commit bfd6c7fa3e

View file

@ -2824,7 +2824,10 @@ let
automake111x = callPackage ../development/tools/misc/automake/automake-1.11.x.nix {
doCheck = !stdenv.isArm && !stdenv.isCygwin
# Some of the parallel tests seem to hang on `i386-pc-solaris2.11'.
&& stdenv.system != "i686-solaris";
&& stdenv.system != "i686-solaris"
# One test fails to terminate on FreeBSD: <http://bugs.gnu.org/8788>.
&& !stdenv.isFreeBSD;
};
automoc4 = callPackage ../development/tools/misc/automoc4 { };