rustc: Don't fail if deleting of breaking tests fails.
This commit is contained in:
parent
83410d9954
commit
e36d243258
@ -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+
|
#[ -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
|
# 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
|
# 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:
|
# Disable test getting stuck on hydra - possible fix:
|
||||||
# https://reviews.llvm.org/rL281650
|
# 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
|
# Useful debugging parameter
|
||||||
# export VERBOSE=1
|
# export VERBOSE=1
|
||||||
|
Loading…
Reference in New Issue
Block a user