rustc: Don't fail if deleting of breaking tests fails.

This commit is contained in:
Moritz Ulrich 2016-11-28 11:16:13 +01:00
parent 83410d9954
commit e36d243258
No known key found for this signature in database
GPG key ID: 45833CACBC407FA7

View file

@ -88,14 +88,14 @@ stdenv.mkDerivation {
#[ -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/
rm -vr src/test/run-make/linker-output-non-utf8 || true
# Remove test targeted at LLVM 3.9 - https://github.com/rust-lang/rust/issues/36835
rm -vr src/test/run-pass/issue-36023.rs
rm -vr src/test/run-pass/issue-36023.rs || true
# Disable test getting stuck on hydra - possible fix:
# https://reviews.llvm.org/rL281650
rm -vr src/test/run-pass/issue-36474.rs
rm -vr src/test/run-pass/issue-36474.rs || true
# Useful debugging parameter
# export VERBOSE=1