File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -577,7 +577,7 @@ pub trait Processor {
577
577
}
578
578
}
579
579
580
- pub struct MeasureProcessor < ' a > {
580
+ pub struct BenchProcessor < ' a > {
581
581
rt : & ' a mut Runtime ,
582
582
benchmark : & ' a BenchmarkName ,
583
583
conn : & ' a mut dyn database:: Connection ,
@@ -589,7 +589,7 @@ pub struct MeasureProcessor<'a> {
589
589
tries : u8 ,
590
590
}
591
591
592
- impl < ' a > MeasureProcessor < ' a > {
592
+ impl < ' a > BenchProcessor < ' a > {
593
593
pub fn new (
594
594
rt : & ' a mut Runtime ,
595
595
conn : & ' a mut dyn database:: Connection ,
@@ -615,7 +615,7 @@ impl<'a> MeasureProcessor<'a> {
615
615
assert ! ( has_tracelog) ;
616
616
}
617
617
618
- MeasureProcessor {
618
+ BenchProcessor {
619
619
rt,
620
620
upload : None ,
621
621
conn,
@@ -812,7 +812,7 @@ impl Upload {
812
812
}
813
813
}
814
814
815
- impl < ' a > Processor for MeasureProcessor < ' a > {
815
+ impl < ' a > Processor for BenchProcessor < ' a > {
816
816
fn profiler ( & self , _profile : ProfileKind ) -> Profiler {
817
817
if self . is_first_collection && self . is_self_profile {
818
818
if cfg ! ( unix) {
Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ fn bench(
267
267
n_benchmarks_remaining( benchmarks. len( ) - nth_benchmark)
268
268
) ;
269
269
270
- let mut processor = execute:: MeasureProcessor :: new (
270
+ let mut processor = execute:: BenchProcessor :: new (
271
271
rt,
272
272
tx. conn ( ) ,
273
273
& benchmark. name ,
You can’t perform that action at this time.
0 commit comments