rustc: disable test-inherit-env

This fails on hydra on x86_64 for unknown reason.
This commit is contained in:
Jörg Thalheim
2018-06-08 10:55:02 +01:00
parent 2f79089553
commit 47529594e4
2 changed files with 18 additions and 1 deletions
+8 -1
View File
@@ -16,7 +16,14 @@ in rec {
rustc = callPackage ./rustc.nix {
inherit stdenv llvm targets targetPatches targetToolchains rustPlatform version src;
patches = [ ./patches/net-tcp-disable-tests.patch ./patches/stdsimd-disable-doctest.patch ];
patches = [
./patches/net-tcp-disable-tests.patch
./patches/stdsimd-disable-doctest.patch
# Fails on hydra - not locally; the exact reason is unknown.
# Comments in the test suggest that some non-reproducible environment
# variables such $RANDOM can make it fail.
./patches/disable-test-inherit-env.patch
];
forceBundledLLVM = true;