about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrik Sverdrup <bluss@users.noreply.github.com>2016-11-25 22:13:59 +0100
committerUlrik Sverdrup <bluss@users.noreply.github.com>2016-11-25 23:10:43 +0100
commit42e66344b5b036ae1853591786ebf22e2c66c045 (patch)
tree744cc15c603fb55835079177608ce97696fdbcc9
parentb1566baa0bb1a410af22bd47adf9d40de25bd402 (diff)
downloadrust-42e66344b5b036ae1853591786ebf22e2c66c045.tar.gz
rust-42e66344b5b036ae1853591786ebf22e2c66c045.zip
rustbuild: Point to core and collections's external benchmarks.
-rw-r--r--src/libcollections/Cargo.toml4
-rw-r--r--src/libcore/Cargo.toml5
2 files changed, 9 insertions, 0 deletions
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"