gnugrep: Disable tests

The test long-pattern-perf is timing sensitive, so it can fail
randomly based on load.

http://hydra.nixos.org/build/30265484
This commit is contained in:
Eelco Dolstra 2016-01-12 12:06:41 +01:00
parent a3dcb3051d
commit 3fdf018f77

View file

@ -16,7 +16,9 @@ stdenv.mkDerivation {
# cygwin: FAIL: multibyte-white-space
# freebsd: FAIL mb-non-UTF8-performance
doCheck = !stdenv.isDarwin && !stdenv.isSunOS && !stdenv.isCygwin && !stdenv.isFreeBSD;
# all platforms: timing sensitivity in long-pattern-perf
#doCheck = !stdenv.isDarwin && !stdenv.isSunOS && !stdenv.isCygwin && !stdenv.isFreeBSD;
doCheck = false;
# On Mac OS X, force use of mkdir -p, since Grep's fallback
# (./install-sh) is broken.