Skip to content

Commit bbb3321

Browse files
committed
Ensure std benchmarks get tested.
1 parent 6aa1d93 commit bbb3321

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/liballoc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ path = "../liballoc/tests/lib.rs"
2525
[[bench]]
2626
name = "collectionsbenches"
2727
path = "../liballoc/benches/lib.rs"
28+
test = true
2829

2930
[[bench]]
3031
name = "vec_deque_append_bench"

src/libcore/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ path = "../libcore/tests/lib.rs"
1919
[[bench]]
2020
name = "corebenches"
2121
path = "../libcore/benches/lib.rs"
22+
test = true
2223

2324
[dev-dependencies]
2425
rand = "0.7"

src/libstd/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,8 @@ std_detect_dlsym_getauxval = []
7474
threads = 125
7575
# Maximum heap size
7676
heap_size = 0x8000000
77+
78+
[[bench]]
79+
name = "stdbenches"
80+
path = "benches/lib.rs"
81+
test = true

0 commit comments

Comments
 (0)