(&self)
| 382 | } |
| 383 | |
| 384 | pub fn get_library_global_feature_file(&self) -> Result<PathBuf> { |
| 385 | let temp_dir = self.get_library_misc_dir()?; |
| 386 | let profdata = [temp_dir, "global_features".into()].iter().collect(); |
| 387 | Ok(profdata) |
| 388 | } |
| 389 | |
| 390 | pub fn copy_file_to_shared_corpus(&self, instresting_files: Vec<PathBuf>) -> Result<()> { |
| 391 | let corpus_dir = self.get_library_shared_corpus_dir()?; |
no test coverage detected