Skip to content

Commit cf9e94c

Browse files
committed
Move some rustc test disables around
1 parent 20e7d31 commit cf9e94c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

scripts/test_rustc_tests.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ pushd rust
1010

1111
command -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
1914
for 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
3833
rm -r tests/ui/scalable-vectors # scalable vectors are unsupported
3934

4035
# exotic linkages
36+
rm -r tests/ui/linkage*
4137
rm tests/incremental/hashes/function_interfaces.rs
4238
rm tests/incremental/hashes/statics.rs
4339
rm -r tests/run-make/naked-symbol-visibility
@@ -80,6 +76,10 @@ rm -r tests/ui/eii # EII not yet implemented
8076
rm -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
8383
rm -r tests/run-make/cdylib
8484
rm -r tests/run-make/codegen-options-parsing
8585
rm -r tests/run-make/lto-*

0 commit comments

Comments
 (0)