Skip to content

Commit

Permalink
findutils: disable tests on i686-linux
Browse files Browse the repository at this point in the history
They won't work since glibc-2.25, and I don't like to spend more time on that.
  • Loading branch information
vcunat committed Feb 13, 2017
1 parent ab5fe17 commit 5ed010f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/tools/misc/findutils/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" ];

Expand Down

0 comments on commit 5ed010f

Please sign in to comment.