(fuzz_dir: &Path, driver_id: u16)
| 39 | } |
| 40 | |
| 41 | fn get_incident_dir(fuzz_dir: &Path, driver_id: u16) -> PathBuf { |
| 42 | let mut incident_dir = fuzz_dir.to_path_buf(); |
| 43 | incident_dir.push(format!("error_{driver_id}")); |
| 44 | incident_dir |
| 45 | } |
| 46 | |
| 47 | #[derive(Clone)] |
| 48 | /// Given a set of programs, check their correctness and synthesize huge fuzzers. |
no test coverage detected