diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-12-14 15:05:20 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-12-14 15:05:20 -0800 |
| commit | 769c5579c99ae24cad98e7d37b41ec095edf28a3 (patch) | |
| tree | 53141a54aacb5ff9150afc709b268784f6c51c09 | |
| parent | b197e4a45f31849c29bf6de260531a8f85ba1bf5 (diff) | |
| download | rust-769c5579c99ae24cad98e7d37b41ec095edf28a3.tar.gz rust-769c5579c99ae24cad98e7d37b41ec095edf28a3.zip | |
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.
| -rw-r--r-- | mk/tests.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 345fc1679b0..3317688f042 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -22,7 +22,7 @@ $(eval $(call RUST_CRATE,coretest)) DEPS_collectionstest := $(eval $(call RUST_CRATE,collectionstest)) -TEST_TARGET_CRATES = $(filter-out core rustc_unicode alloc_system libc \ +TEST_TARGET_CRATES = $(filter-out core std_unicode alloc_system libc \ alloc_jemalloc panic_unwind \ panic_abort,$(TARGET_CRATES)) \ collectionstest coretest |
