File tree 2 files changed +1
-10
lines changed
2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -63,10 +63,6 @@ impl BenchmarkSuite {
63
63
}
64
64
}
65
65
66
- pub fn total_benchmark_count ( & self ) -> u64 {
67
- self . benchmark_names ( ) . count ( ) as u64
68
- }
69
-
70
66
pub fn filtered_benchmark_count ( & self , filter : & BenchmarkFilter ) -> u64 {
71
67
self . benchmark_names ( )
72
68
. filter ( |benchmark| {
Original file line number Diff line number Diff line change @@ -30,13 +30,8 @@ pub async fn bench_runtime(
30
30
filter : BenchmarkFilter ,
31
31
iterations : u32 ,
32
32
) -> anyhow:: Result < ( ) > {
33
- let total_benchmark_count = suite. total_benchmark_count ( ) ;
34
33
let filtered = suite. filtered_benchmark_count ( & filter) ;
35
- println ! (
36
- "Executing {} benchmarks ({} filtered out)\n " ,
37
- filtered,
38
- total_benchmark_count - filtered
39
- ) ;
34
+ println ! ( "Executing {} benchmarks\n " , filtered) ;
40
35
41
36
let rustc_perf_version = get_rustc_perf_commit ( ) ;
42
37
let mut benchmark_index = 0 ;
You can’t perform that action at this time.
0 commit comments