Skip to content

Commit 52e024f

Browse files
committed
Auto merge of #38374 - alexcrichton:makefile-fix, r=brson
mk: Fix `make check` When the rustc-unicode crate was renamed to std-unicode we just need to continue to filter it out of the crates being tested.
2 parents 0d558d0 + 769c557 commit 52e024f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/tests.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $(eval $(call RUST_CRATE,coretest))
2222
DEPS_collectionstest :=
2323
$(eval $(call RUST_CRATE,collectionstest))
2424

25-
TEST_TARGET_CRATES = $(filter-out core rustc_unicode alloc_system libc \
25+
TEST_TARGET_CRATES = $(filter-out core std_unicode alloc_system libc \
2626
alloc_jemalloc panic_unwind \
2727
panic_abort,$(TARGET_CRATES)) \
2828
collectionstest coretest

0 commit comments

Comments
 (0)