(fuzz_dir: &Path)
| 33 | } |
| 34 | |
| 35 | pub fn get_fuzzer_log(fuzz_dir: &Path) -> PathBuf { |
| 36 | let mut fuzzer_log = fuzz_dir.to_path_buf(); |
| 37 | fuzzer_log.push("fuzz.log"); |
| 38 | fuzzer_log |
| 39 | } |
| 40 | |
| 41 | fn get_incident_dir(fuzz_dir: &Path, driver_id: u16) -> PathBuf { |
| 42 | let mut incident_dir = fuzz_dir.to_path_buf(); |
no test coverage detected