@@ -35,6 +35,7 @@ git checkout -- tests/ui/entry-point/auxiliary/bad_main_functions.rs
3535rm tests/ui/asm/x86_64/evex512-implicit-feature.rs # unimplemented AVX512 x86 vendor intrinsic
3636rm tests/ui/simd/dont-invalid-bitcast-x86_64.rs # unimplemented llvm.x86.sse41.round.ps
3737rm tests/ui/simd/intrinsic/generic-arithmetic-pass.rs # unimplemented simd_funnel_{shl,shr}
38+ rm -r tests/ui/scalable-vectors # scalable vectors are unsupported
3839
3940# exotic linkages
4041rm tests/incremental/hashes/function_interfaces.rs
@@ -53,23 +54,29 @@ rm tests/ui/sanitizer/kcfi-c-variadic.rs # same
5354rm tests/ui/c-variadic/same-program-multiple-abis-x86_64.rs # variadics for calling conventions other than C unsupported
5455rm tests/ui/delegation/fn-header.rs
5556
57+ # inline assembly features
58+ rm tests/ui/asm/x86_64/issue-96797.rs # const and sym inline asm operands don't work entirely correctly
59+ rm tests/ui/asm/global-asm-mono-sym-fn.rs # same
60+ rm tests/ui/asm/naked-asm-mono-sym-fn.rs # same
61+ rm tests/ui/asm/x86_64/goto.rs # inline asm labels not supported
62+ rm tests/ui/asm/label-operand.rs # same
63+ rm tests/ui/asm/may_unwind.rs # asm unwinding not supported
64+ rm tests/ui/asm/aarch64/may_unwind.rs # same
65+
5666# misc unimplemented things
5767rm tests/ui/target-feature/missing-plusminus.rs # error not implemented
5868rm -r tests/run-make/repr128-dwarf # debuginfo test
5969rm -r tests/run-make/split-debuginfo # same
6070rm -r tests/run-make/target-specs # i686 not supported by Cranelift
6171rm -r tests/run-make/mismatching-target-triples # same
62- rm tests/ui/asm/x86_64/issue-96797.rs # const and sym inline asm operands don't work entirely correctly
63- rm tests/ui/asm/global-asm-mono-sym-fn.rs # same
64- rm tests/ui/asm/naked-asm-mono-sym-fn.rs # same
65- rm tests/ui/asm/x86_64/goto.rs # inline asm labels not supported
66- rm tests/ui/asm/label-operand.rs # same
6772rm tests/ui/simd/simd-bitmask-notpow2.rs # non-pow-of-2 simd vector sizes
6873rm -r tests/run-make/used-proc-macro # used(linker) isn't supported yet
6974rm tests/ui/linking/no-gc-encapsulation-symbols.rs # same
7075rm tests/ui/attributes/fn-align-dyn.rs # per-function alignment not supported
7176rm -r tests/ui/explicit-tail-calls # tail calls
7277rm -r tests/run-make/pointer-auth-link-with-c # pointer auth
78+ rm -r tests/ui/eii # EII not yet implemented
79+ rm -r tests/run-make/forced-unwind-terminate-pof # forced unwinding doesn't take precedence
7380
7481# requires LTO
7582rm -r tests/run-make/cdylib
@@ -78,6 +85,7 @@ rm -r tests/run-make/lto-*
7885rm -r tests/run-make/reproducible-build-2
7986rm -r tests/run-make/no-builtins-lto
8087rm -r tests/run-make/reachable-extern-fn-available-lto
88+ rm -r tests/run-make/no-builtins-linker-plugin-lto
8189
8290# coverage instrumentation
8391rm tests/ui/consts/precise-drop-with-coverage.rs
@@ -87,6 +95,7 @@ rm -r tests/ui/instrument-coverage/
8795# ==================
8896rm tests/ui/codegen/issue-28950.rs # depends on stack size optimizations
8997rm tests/ui/codegen/init-large-type.rs # same
98+ rm tests/ui/codegen/StackColoring-not-blowup-stack-issue-40883.rs # same
9099rm tests/ui/statics/const_generics.rs # tests an optimization
91100rm tests/ui/linking/executable-no-mangle-strip.rs # requires --gc-sections to work for statics
92101
@@ -143,6 +152,15 @@ rm tests/ui/errors/remap-path-prefix-sysroot.rs # different sysroot source path
143152rm -r tests/run-make/export/extern-opt # something about rustc version mismatches
144153rm -r tests/run-make/export # same
145154rm -r tests/ui/compiletest-self-test/compile-flags-incremental.rs # needs compiletest compiled with panic=unwind
155+ rm tests/ui/async-await/in-trait/dont-project-to-specializable-projection.rs # something going wrong with stdlib source remapping
156+ rm tests/ui/consts/miri_unleashed/drop.rs # same
157+ rm tests/ui/error-emitter/multiline-removal-suggestion.rs # same
158+ rm tests/ui/lint/lint-const-item-mutation.rs # same
159+ rm tests/ui/lint/use-redundant/use-redundant-issue-71450.rs # same
160+ rm tests/ui/lint/use-redundant/use-redundant-prelude-rust-2021.rs # same
161+ rm tests/ui/specialization/const_trait_impl.rs # same
162+ rm tests/ui/thir-print/offset_of.rs # same
163+ rm tests/ui/traits/const-traits/const_closure-const_trait_impl-ice-113381.rs # same
146164
147165# genuine bugs
148166# ============
@@ -157,6 +175,7 @@ rm tests/ui/lint/non-snake-case/lint-non-snake-case-crate.rs # same
157175rm tests/ui/async-await/async-drop/async-drop-initial.rs # same (rust-lang/rust#140493)
158176rm -r tests/ui/codegen/equal-pointers-unequal # make incorrect assumptions about the location of stack variables
159177rm -r tests/run-make-cargo/rustdoc-scrape-examples-paths # FIXME(rust-lang/rust#145580) incr comp bug
178+ rm -r tests/incremental/extern_static/issue-49153.rs # assumes reference to undefined static gets optimized away
160179
161180rm tests/ui/intrinsics/panic-uninitialized-zeroed.rs # really slow with unoptimized libstd
162181rm tests/ui/process/process-panic-after-fork.rs # same
0 commit comments