From 89292beedb84977970a6ab0e3a0ad695e2fcf7db Mon Sep 17 00:00:00 2001 From: chansuke Date: Sun, 2 Jun 2019 01:50:10 +0900 Subject: [PATCH] Separate liballoc module --- src/liballoc/lib.rs | 2 +- src/liballoc/{boxed_test.rs => tests.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/liballoc/{boxed_test.rs => tests.rs} (100%) diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index c530ac24275..5fc58c8ab5a 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -141,7 +141,7 @@ mod boxed { pub use std::boxed::Box; } #[cfg(test)] -mod boxed_test; +mod tests; pub mod collections; #[cfg(all(target_has_atomic = "ptr", target_has_atomic = "cas"))] pub mod sync; diff --git a/src/liballoc/boxed_test.rs b/src/liballoc/tests.rs similarity index 100% rename from src/liballoc/boxed_test.rs rename to src/liballoc/tests.rs