Skip to content

Commit 716dcb7

Browse files
committed
Fix rustc test suite
1 parent 3deb6c6 commit 716dcb7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/test_rustc_tests.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ rm tests/ui/proc-macro/allowed-signatures.rs
4949
# vendor intrinsics
5050
rm tests/ui/sse2.rs # cpuid not supported, so sse2 not detected
5151
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
5254

5355
# exotic linkages
5456
rm tests/ui/issues/issue-33992.rs # unsupported linkages
@@ -124,6 +126,8 @@ rm tests/ui/typeck/issue-46112.rs # same
124126
rm tests/ui/consts/const_cmp_type_id.rs # same
125127
rm tests/ui/consts/issue-73976-monomorphic.rs # same
126128
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
127131

128132
# rustdoc-clif passes extra args, suppressing the help message when no args are passed
129133
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
158162

159163
rm tests/ui/stdio-is-blocking.rs # really slow with unoptimized libstd
160164

161-
rm tests/ui/panic-handler/weak-lang-item-2.rs # Will be fixed by #113568
162-
163165
cp ../dist/bin/rustdoc-clif ../dist/bin/rustdoc # some tests expect bin/rustdoc to exist
164166

165167
# 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
172174
@@ -9,7 +9,7 @@ RUSTC_ORIGINAL := \$(RUSTC)
173175
BARE_RUSTC := \$(HOST_RPATH_ENV) '\$(RUSTC)'
174176
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
176178
-RUSTDOC := \$(BARE_RUSTDOC) -L \$(TARGET_RPATH_DIR)
177179
+RUSTDOC := \$(BARE_RUSTDOC)
178180
ifdef RUSTC_LINKER

0 commit comments

Comments
 (0)