(&self)
| 410 | } |
| 411 | |
| 412 | pub fn get_library_build_dict_path(&self) -> Result<PathBuf> { |
| 413 | let path: PathBuf = [self.get_library_build_dir()?, "fuzzer.dict".into()] |
| 414 | .iter() |
| 415 | .collect(); |
| 416 | Ok(path) |
| 417 | } |
| 418 | |
| 419 | pub fn get_library_work_dir(&self) -> Result<PathBuf> { |
| 420 | let path: PathBuf = [self.get_library_output_dir()?, "work".into()] |
no test coverage detected