findutils: disable tests on i686-linux

They won't work since glibc-2.25, and I don't like to spend more time on that.
This commit is contained in:
Vladimír Čunát 2017-02-13 22:10:50 +01:00
parent ab5fe171af
commit 5ed010f50b
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ coreutils ];
doCheck = !stdenv.isDarwin;
# Since glibc-2.25 the i686 tests hang reliably right after test-sleep.
doCheck = !stdenv.isDarwin && (stdenv.system != "i686-linux");
outputs = [ "out" "info" ];