rustc: Disable failing linker-output-utf8 test.

This commit is contained in:
Moritz Ulrich 2016-08-10 21:13:22 +02:00
parent 3324123eb7
commit 02608c6a3c

View file

@ -63,6 +63,7 @@ stdenv.mkDerivation {
++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}";
patches = patches ++ targetPatches;
passthru.target = target;
postPatch = ''
@ -87,6 +88,9 @@ stdenv.mkDerivation {
#[ -f src/liballoc_jemalloc/lib.rs ] && sed -i 's,je_,,g' src/liballoc_jemalloc/lib.rs
#[ -f src/liballoc/heap.rs ] && sed -i 's,je_,,g' src/liballoc/heap.rs # Remove for 1.4.0+
# Disable fragile linker-output-non-utf8 test
rm -vr src/test/run-make/linker-output-non-utf8/
# Useful debugging parameter
#export VERBOSE=1
'';