rustc: disable test on i686

They run out of memory and lead to failing tests.

fixes #39110
This commit is contained in:
Jörg Thalheim 2018-04-21 18:50:58 +01:00
parent 6fa31bc49c
commit 14a119e198

View file

@ -20,10 +20,11 @@ in rec {
configureFlags = [ "--release-channel=stable" ];
# Upstream is not running tests on aarch64:
# 1. Upstream is not running tests on aarch64:
# see https://github.com/rust-lang/rust/issues/49807#issuecomment-380860567
# So we do the same.
doCheck = !stdenv.isAarch64;
# 2. Tests run out of memory for i686
doCheck = !stdenv.isAarch64 && !stdenv.isi686;
patches = [
./patches/0001-Disable-fragile-tests-libstd-net-tcp-on-Darwin-Linux.patch