(binary: &Path, extra_allocators: &[AllocatorLib])
| 163 | } |
| 164 | |
| 165 | pub fn track_binary_with_opts(binary: &Path, extra_allocators: &[AllocatorLib]) -> TrackResult { |
| 166 | track_command(Command::new(binary), extra_allocators, true) |
| 167 | } |
| 168 | |
| 169 | pub fn track_binary(binary: &Path) -> TrackResult { |
| 170 | track_binary_with_opts(binary, &[]) |
no test coverage detected