File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ pub fn bench_runtime(
24
24
let total_benchmark_count = suite. total_benchmark_count ( ) ;
25
25
let filtered = suite. filtered_benchmark_count ( & filter) ;
26
26
println ! (
27
- "Executing {} benchmarks ({} filtered out)" ,
27
+ "Executing {} benchmarks ({} filtered out)\n " ,
28
28
filtered,
29
29
total_benchmark_count - filtered
30
30
) ;
@@ -120,7 +120,7 @@ fn print_stats(result: &BenchmarkResult) {
120
120
. sqrt ( ) ;
121
121
122
122
println ! (
123
- "{name:>20 }: {:>16} (+/- {:>8 })" ,
123
+ "{name:>18 }: {:>16} (+/- {:>11 })" ,
124
124
( mean as u64 ) . separate_with_commas( ) ,
125
125
( stddev as u64 ) . separate_with_commas( )
126
126
) ;
@@ -136,4 +136,5 @@ fn print_stats(result: &BenchmarkResult) {
136
136
} ) ;
137
137
print_metric ( result, "Branch misses" , |m| m. branch_misses ) ;
138
138
print_metric ( result, "Cache misses" , |m| m. cache_misses ) ;
139
+ println ! ( ) ;
139
140
}
You can’t perform that action at this time.
0 commit comments