(&self)
| 249 | } |
| 250 | |
| 251 | fn get_library_error_seed_dir(&self) -> Result<PathBuf> { |
| 252 | let mut outcs_dir = self.get_library_output_dir()?; |
| 253 | outcs_dir.push("error_seeds"); |
| 254 | utils::create_dir_if_nonexist(&outcs_dir)?; |
| 255 | Ok(outcs_dir) |
| 256 | } |
| 257 | |
| 258 | pub fn get_library_driver_dir(&self) -> Result<PathBuf> { |
| 259 | let mut driver_dir = self.get_library_output_dir()?; |
no test coverage detected