@@ -11,16 +11,10 @@ pushd rust
11
11
command -v rg > /dev/null 2>&1 || cargo install ripgrep
12
12
13
13
rm -r tests/ui/{unsized-locals/,lto/,linkage* } || true
14
- for test in $( rg --files-with-matches " lto|// needs-asm-support " tests/{codegen-units,ui,incremental}) ; do
14
+ for test in $( rg --files-with-matches " lto" tests/{codegen-units,ui,incremental}) ; do
15
15
rm $test
16
16
done
17
17
18
- for test in tests/run-make/** /Makefile; do
19
- if rg " # needs-asm-support" $test > /dev/null; then
20
- rm -r $( dirname $test )
21
- fi
22
- done
23
-
24
18
for test in $( rg -i --files-with-matches " //(\[\w+\])?~[^\|]*\s*ERR|// error-pattern:|// build-fail|// run-fail|-Cllvm-args" tests/ui) ; do
25
19
rm $test
26
20
done
@@ -36,8 +30,9 @@ rm tests/ui/parser/unclosed-delimiter-in-dep.rs # submodule contains //~ERROR
36
30
rm -r tests/run-make/comment-section # cg_clif doesn't yet write the .comment section
37
31
38
32
# requires stack unwinding
39
- # FIXME add needs-unwind to this test
33
+ # FIXME add needs-unwind to these tests
40
34
rm -r tests/run-make/libtest-junit
35
+ rm tests/ui/asm/may_unwind.rs
41
36
42
37
# extra warning about -Cpanic=abort for proc macros
43
38
rm tests/ui/proc-macro/crt-static.rs
@@ -78,6 +73,8 @@ rm -r tests/run-make/symbols-include-type-name # --emit=asm not supported
78
73
rm -r tests/run-make/target-specs # i686 not supported by Cranelift
79
74
rm -r tests/run-make/mismatching-target-triples # same
80
75
rm -r tests/run-make/use-extern-for-plugins # same
76
+ rm tests/ui/asm/x86_64/issue-82869.rs # vector regs in inline asm not yet supported
77
+ rm tests/ui/asm/x86_64/issue-96797.rs # const and sym inline asm operands don't work entirely correctly
81
78
82
79
# requires LTO
83
80
rm -r tests/run-make/cdylib
0 commit comments