Remove "benches" feature

Now benches just live with the rest of the code in the default feature.
This commit is contained in:
Paul Hauner
2018-09-30 16:09:07 +09:30
parent 29ed29cfc3
commit b426c9e724
2 changed files with 2 additions and 3 deletions

View File

@@ -66,6 +66,7 @@ fn bench_block_validation_scenario<F>(
}
#[bench]
#[ignore]
fn bench_block_validation_10m_eth(b: &mut Bencher) {
let total_validators: usize = 10_000_000 / 32;
let cycle_length: u8 = 64;
@@ -105,6 +106,7 @@ fn bench_block_validation_10m_eth(b: &mut Bencher) {
}
#[bench]
#[ignore]
fn bench_block_validation_100m_eth(b: &mut Bencher) {
let total_validators: usize = 100_000_000 / 32;
let cycle_length: u8 = 64;