From 42e66344b5b036ae1853591786ebf22e2c66c045 Mon Sep 17 00:00:00 2001 From: Ulrik Sverdrup Date: Fri, 25 Nov 2016 22:13:59 +0100 Subject: [PATCH] rustbuild: Point to core and collections's external benchmarks. --- src/libcollections/Cargo.toml | 4 ++++ src/libcore/Cargo.toml | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/libcollections/Cargo.toml b/src/libcollections/Cargo.toml index 65d456e750f..3056977d224 100644 --- a/src/libcollections/Cargo.toml +++ b/src/libcollections/Cargo.toml @@ -15,3 +15,7 @@ rustc_unicode = { path = "../librustc_unicode" } [[test]] name = "collectionstest" path = "../libcollectionstest/lib.rs" + +[[bench]] +name = "collectionstest" +path = "../libcollectionstest/lib.rs" diff --git a/src/libcore/Cargo.toml b/src/libcore/Cargo.toml index 3b406ac0447..a72c712ad17 100644 --- a/src/libcore/Cargo.toml +++ b/src/libcore/Cargo.toml @@ -7,7 +7,12 @@ version = "0.0.0" name = "core" path = "lib.rs" test = false +bench = false [[test]] name = "coretest" path = "../libcoretest/lib.rs" + +[[bench]] +name = "coretest" +path = "../libcoretest/lib.rs"