(profiler_override: Option<WalltimeProfiler>)
| 107 | |
| 108 | impl WallTimeExecutor { |
| 109 | pub fn new(profiler_override: Option<WalltimeProfiler>) -> Self { |
| 110 | Self { |
| 111 | profiler: select_profiler(profiler_override), |
| 112 | benchmark_state: OnceCell::new(), |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /// Prepare the benchmark command wrapped with the necessary environment variables for |
| 117 | /// introspection and environment forwarding ahead of privilege escalation and isolation. |
nothing calls this directly
no test coverage detected