Skip to content

Commit

Permalink
rustc: disable test on i686
Browse files Browse the repository at this point in the history
They run out of memory and lead to failing tests.

fixes #39110

(cherry picked from commit 14a119e)
  • Loading branch information
Mic92 committed Apr 21, 2018
1 parent df4eae6 commit ca5bc1e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/compilers/rust/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ca5bc1e

Please sign in to comment.