@@ -49,6 +49,8 @@ rm tests/ui/proc-macro/allowed-signatures.rs
49
49
# vendor intrinsics
50
50
rm tests/ui/sse2.rs # cpuid not supported, so sse2 not detected
51
51
rm tests/ui/simd/array-type.rs # "Index argument for `simd_insert` is not a constant"
52
+ rm tests/ui/simd/intrinsic/generic-bswap-byte.rs # simd_bswap not yet implemented
53
+ rm tests/ui/simd/intrinsic/generic-arithmetic-pass.rs # many missing simd intrinsics
52
54
53
55
# exotic linkages
54
56
rm tests/ui/issues/issue-33992.rs # unsupported linkages
@@ -124,6 +126,8 @@ rm tests/ui/typeck/issue-46112.rs # same
124
126
rm tests/ui/consts/const_cmp_type_id.rs # same
125
127
rm tests/ui/consts/issue-73976-monomorphic.rs # same
126
128
rm tests/ui/rfcs/rfc-3348-c-string-literals/non-ascii.rs # same
129
+ rm tests/ui/consts/const-eval/nonnull_as_ref_ub.rs # same
130
+ rm tests/ui/consts/issue-94675.rs # same
127
131
128
132
# rustdoc-clif passes extra args, suppressing the help message when no args are passed
129
133
rm -r tests/run-make/issue-88756-default-output
@@ -158,8 +162,6 @@ rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue
158
162
159
163
rm tests/ui/stdio-is-blocking.rs # really slow with unoptimized libstd
160
164
161
- rm tests/ui/panic-handler/weak-lang-item-2.rs # Will be fixed by #113568
162
-
163
165
cp ../dist/bin/rustdoc-clif ../dist/bin/rustdoc # some tests expect bin/rustdoc to exist
164
166
165
167
# prevent $(RUSTDOC) from picking up the sysroot built by x.py. It conflicts with the one used by
@@ -172,7 +174,7 @@ index ea06b620c4c..b969d0009c6 100644
172
174
@@ -9,7 +9,7 @@ RUSTC_ORIGINAL := \$ (RUSTC)
173
175
BARE_RUSTC := \$ (HOST_RPATH_ENV) '\$ (RUSTC)'
174
176
BARE_RUSTDOC := \$ (HOST_RPATH_ENV) '\$ (RUSTDOC)'
175
- RUSTC := \$ (BARE_RUSTC) --out-dir \$ (TMPDIR) -L \$ (TMPDIR) \$ (RUSTFLAGS)
177
+ RUSTC := \$ (BARE_RUSTC) --out-dir \$ (TMPDIR) -L \$ (TMPDIR) \$ (RUSTFLAGS) -Ainternal_features
176
178
-RUSTDOC := \$ (BARE_RUSTDOC) -L \$ (TARGET_RPATH_DIR)
177
179
+RUSTDOC := \$ (BARE_RUSTDOC)
178
180
ifdef RUSTC_LINKER
0 commit comments