File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,11 +10,6 @@ pushd rust
1010
1111command -v rg > /dev/null 2>&1 || cargo install ripgrep
1212
13- rm -r tests/ui/{lto/,linkage* } || true
14- for test in $( rg --files-with-matches " lto" tests/{codegen-units,ui,incremental}) ; do
15- rm $test
16- done
17-
1813# should-fail tests don't work when compiletest is compiled with panic=abort
1914for test in $( rg --files-with-matches " //@ should-fail" tests/{codegen-units,ui,incremental}) ; do
2015 rm $test
@@ -38,6 +33,7 @@ rm tests/ui/simd/intrinsic/generic-arithmetic-pass.rs # unimplemented simd_funne
3833rm -r tests/ui/scalable-vectors # scalable vectors are unsupported
3934
4035# exotic linkages
36+ rm -r tests/ui/linkage*
4137rm tests/incremental/hashes/function_interfaces.rs
4238rm tests/incremental/hashes/statics.rs
4339rm -r tests/run-make/naked-symbol-visibility
@@ -80,6 +76,10 @@ rm -r tests/ui/eii # EII not yet implemented
8076rm -r tests/run-make/forced-unwind-terminate-pof # forced unwinding doesn't take precedence
8177
8278# requires LTO
79+ rm -r tests/ui/lto
80+ for test in $( rg --files-with-matches " lto" tests/{codegen-units,ui,incremental}) ; do
81+ rm $test
82+ done
8383rm -r tests/run-make/cdylib
8484rm -r tests/run-make/codegen-options-parsing
8585rm -r tests/run-make/lto-*
You can’t perform that action at this time.
0 commit comments