From 14a119e1986cb6d60aef754561f9bbb36729fa43 Mon Sep 17 00:00:00 2001 From: Jörg Thalheim Date: Sat, 21 Apr 2018 18:50:58 +0100 Subject: rustc: disable test on i686 They run out of memory and lead to failing tests. fixes #39110 --- pkgs/development/compilers/rust/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix index f47c1f753ee1..f191515b745c 100644 --- a/pkgs/development/compilers/rust/default.nix +++ b/pkgs/development/compilers/rust/default.nix @@ -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 -- cgit 1.4.1