(&self)
| 417 | } |
| 418 | |
| 419 | pub fn get_library_work_dir(&self) -> Result<PathBuf> { |
| 420 | let path: PathBuf = [self.get_library_output_dir()?, "work".into()] |
| 421 | .iter() |
| 422 | .collect(); |
| 423 | utils::create_dir_if_nonexist(&path)?; |
| 424 | Ok(path) |
| 425 | } |
| 426 | |
| 427 | pub fn get_library_transform_check_dir(&self, driver: &Path) -> Result<PathBuf> { |
| 428 | let mut path: PathBuf = [self.get_library_work_dir()?, "transform_check".into()] |
no test coverage detected