1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

pcre: disable tests for freeBSDs, as we're running out of stack

This commit is contained in:
Vladimír Čunát 2013-10-08 20:58:34 +02:00
parent e855ac5070
commit 59a5f6307d

View file

@ -18,7 +18,9 @@ stdenv.mkDerivation rec {
${if !cplusplusSupport then "--disable-cpp" else ""}
'' + stdenv.lib.optionalString stdenv.isDarwin "CXXFLAGS=-O0";
doCheck = !stdenv.isCygwin; # XXX: test failure on Cygwin
doCheck = with stdenv; !(isCygwin || isFreeBSD);
# XXX: test failure on Cygwin
# we are running out of stack on both freeBSDs on Hydra
meta = {
homepage = "http://www.pcre.org/";