GNU M4: Disable tests on Solaris.

This commit is contained in:
Ludovic Courtès 2012-06-28 15:50:03 +02:00
parent 77fdc7bb35
commit 18a9c46a46

View File

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