libtoxcore: Disable tests

This commit is contained in:
Jascha Geerds 2014-12-05 15:03:58 +01:00
parent 9d9323b3a9
commit 0be4c3b484

View File

@ -44,8 +44,13 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = stdenv.lib.optionals (!stdenv.isArm) [ libvpx ];
# Some tests fail in the Sheevaplug due to timeout
doCheck = !stdenv.isArm;
# Some tests fail randomly due to timeout. This kind of problem is well known
# by upstream: https://github.com/irungentoo/toxcore/issues/{950,1054}
# They don't recommend running tests on 50core machines with other cpu-bound
# tests running in parallel.
#
# NOTE: run the tests locally on your machine before upgrading this package!
doCheck = false;
meta = with stdenv.lib; {
description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";