@@ -10,14 +10,13 @@ pushd rust
1010
1111command -v rg > /dev/null 2>&1 || cargo install ripgrep
1212
13- # FIXME remove this workaround once ICE tests no longer emit an outdated nightly message
14- for test in $( rg -i --files-with-matches " //@(\[.*\])? failure-status: 101" tests/ui) ; do
15- echo " rm $test "
13+ rm -r tests/ui/{unsized-locals/,lto/,linkage* } || true
14+ for test in $( rg --files-with-matches " lto" tests/{codegen-units,ui,incremental}) ; do
1615 rm $test
1716done
1817
19- rm -r tests/ui/{unsized-locals/,lto/,linkage * } || true
20- for test in $( rg --files-with-matches " lto " tests/{codegen-units,ui,incremental}) ; do
18+ # should-fail tests don't work when compiletest is compiled with panic=abort
19+ for test in $( rg --files-with-matches " //@ should-fail " tests/{codegen-units,ui,incremental}) ; do
2120 rm $test
2221done
2322
@@ -79,7 +78,6 @@ rm -r tests/run-make/fmt-write-bloat/ # tests an optimization
7978# ======================
8079rm tests/incremental/thinlto/cgu_invalidated_when_import_{added,removed}.rs # requires LLVM
8180rm -r tests/run-make/cross-lang-lto # same
82- rm -r tests/run-make/issue-7349 # same
8381rm -r tests/run-make/sepcomp-inlining # same
8482rm -r tests/run-make/sepcomp-separate # same
8583rm -r tests/run-make/sepcomp-cci-copies # same
@@ -116,8 +114,6 @@ rm -r tests/run-make/compiler-builtins # Expects lib/rustlib/src/rust to contain
116114
117115# genuine bugs
118116# ============
119- rm tests/incremental/spike-neg1.rs # errors out for some reason
120- rm tests/incremental/spike-neg2.rs # same
121117rm -r tests/run-make/extern-fn-explicit-align # argument alignment not yet supported
122118rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort
123119
0 commit comments