picoc: disable broken tests on i686

This commit is contained in:
Pascal Wittmann 2015-08-05 21:49:34 +02:00
parent 61051ee836
commit 006a2f553e

View file

@ -39,7 +39,9 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
doCheck = true;
# Tests are currently broken on i686 see
# http://hydra.nixos.org/build/24003763/nixlog/1
doCheck = if stdenv.isi686 then false else true;
checkTarget = "test";
installPhase = ''