@@ -10,14 +10,13 @@ pushd rust
10
10
11
11
command -v rg > /dev/null 2>&1 || cargo install ripgrep
12
12
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
16
15
rm $test
17
16
done
18
17
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
21
20
rm $test
22
21
done
23
22
@@ -79,7 +78,6 @@ rm -r tests/run-make/fmt-write-bloat/ # tests an optimization
79
78
# ======================
80
79
rm tests/incremental/thinlto/cgu_invalidated_when_import_{added,removed}.rs # requires LLVM
81
80
rm -r tests/run-make/cross-lang-lto # same
82
- rm -r tests/run-make/issue-7349 # same
83
81
rm -r tests/run-make/sepcomp-inlining # same
84
82
rm -r tests/run-make/sepcomp-separate # same
85
83
rm -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
116
114
117
115
# genuine bugs
118
116
# ============
119
- rm tests/incremental/spike-neg1.rs # errors out for some reason
120
- rm tests/incremental/spike-neg2.rs # same
121
117
rm -r tests/run-make/extern-fn-explicit-align # argument alignment not yet supported
122
118
rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort
123
119
0 commit comments