(system_info: &SystemInfo)
| 44 | } |
| 45 | |
| 46 | fn get_codspeed_valgrind_binary(system_info: &SystemInfo) -> Result<PinnedBinary> { |
| 47 | Ok(PinnedBinary::ValgrindDeb(get_codspeed_valgrind_target( |
| 48 | system_info, |
| 49 | )?)) |
| 50 | } |
| 51 | |
| 52 | pub(super) fn is_codspeed_valgrind_installation_supported(system_info: &SystemInfo) -> bool { |
| 53 | get_codspeed_valgrind_target(system_info).is_ok() |
no test coverage detected