(&self)
| 403 | } |
| 404 | |
| 405 | pub fn get_library_build_lib_path(&self) -> Result<PathBuf> { |
| 406 | let path: PathBuf = [self.get_library_build_dir()?, "lib".into()] |
| 407 | .iter() |
| 408 | .collect(); |
| 409 | Ok(path) |
| 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()] |
no test coverage detected