GNU M4: Disable tests on Cygwin.

svn path=/nixpkgs/trunk/; revision=34277
This commit is contained in:
Ludovic Courtès 2012-05-29 16:37:28 +00:00
parent dc4035a4bd
commit 472a9d6e3d

View file

@ -8,7 +8,8 @@ stdenv.mkDerivation {
sha256 = "035r7ma272j2cwni2961jp22k6bn3n9xwn3b3qbcn2yrvlghql22";
};
doCheck = !stdenv.isDarwin;
doCheck = !stdenv.isDarwin
&& !stdenv.isCygwin; # XXX: `test-dup2' fails on Cygwin
# Upstream is aware of it; it may be in the next release.
patches = [ ./s_isdir.patch ./readlink-EINVAL.patch ];