@@ -15,11 +15,6 @@ for test in $(rg --files-with-matches "lto" tests/{codegen-units,ui,incremental}
15
15
rm $test
16
16
done
17
17
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
20
- rm $test
21
- done
22
-
23
18
for test in $( rg -i --files-with-matches " //(\[\w+\])?~[^\|]*\s*ERR|//@ error-pattern:|//@(\[.*\])? build-fail|//@(\[.*\])? run-fail|-Cllvm-args" tests/ui) ; do
24
19
rm $test
25
20
done
@@ -56,6 +51,8 @@ rm tests/ui/asm/x86_64/issue-96797.rs # const and sym inline asm operands don't
56
51
rm tests/ui/asm/global-asm-mono-sym-fn.rs # same
57
52
rm tests/ui/asm/naked-asm-mono-sym-fn.rs # same
58
53
rm tests/ui/asm/x86_64/goto.rs # inline asm labels not supported
54
+ rm tests/ui/asm/aarch64/may_unwind.rs # inline asm unwind not supported
55
+ rm tests/ui/asm/may_unwind.rs # same
59
56
rm tests/ui/simd/simd-bitmask-notpow2.rs # non-pow-of-2 simd vector sizes
60
57
rm -r tests/run-make/embed-source-dwarf # embedding sources in debuginfo
61
58
@@ -76,6 +73,7 @@ rm -r tests/ui/instrument-coverage/
76
73
# ==================
77
74
rm tests/ui/codegen/issue-28950.rs # depends on stack size optimizations
78
75
rm tests/ui/codegen/init-large-type.rs # same
76
+ rm tests/ui/codegen/StackColoring-not-blowup-stack-issue-40883.rs # same
79
77
rm -r tests/run-make/fmt-write-bloat/ # tests an optimization
80
78
rm tests/ui/statics/const_generics.rs # same
81
79
rm tests/ui/linking/executable-no-mangle-strip.rs # requires --gc-sections to work for statics
@@ -135,14 +133,13 @@ rm -r tests/run-make/export # same
135
133
# ============
136
134
rm -r tests/run-make/extern-fn-explicit-align # argument alignment not yet supported
137
135
rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort
136
+ rm -r tests/run-make/forced-unwind-terminate-pof # adding wrong terminate guard
138
137
139
138
# bugs in the test suite
140
139
# ======================
141
140
rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue
142
- rm tests/ui/backtrace/synchronized-panic-handler.rs # missing needs-unwind annotation
143
- rm tests/ui/lint/non-snake-case/lint-non-snake-case-crate.rs # same
144
- rm tests/ui/async-await/async-drop/async-drop-initial.rs # same (rust-lang/rust#140493)
145
141
rm -r tests/ui/codegen/equal-pointers-unequal # make incorrect assumptions about the location of stack variables
142
+ rm tests/incremental/extern_static/issue-49153.rs # references undefined symbol
146
143
147
144
rm tests/ui/stdio-is-blocking.rs # really slow with unoptimized libstd
148
145
rm tests/ui/intrinsics/panic-uninitialized-zeroed.rs # same
@@ -166,5 +163,5 @@ index 073116933bd..c3e4578204d 100644
166
163
EOF
167
164
168
165
echo " [TEST] rustc test suite"
169
- COMPILETEST_FORCE_STAGE0=1 ./x.py test --stage 0 --test-args=--no-capture tests/{codegen-units,run-make,ui,incremental}
166
+ COMPILETEST_FORCE_STAGE0=1 ./x.py test --stage 0 tests/{codegen-units,run-make,ui,incremental}
170
167
popd
0 commit comments