MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / get_library_transform_check_dir

Method get_library_transform_check_dir

src/deopt.rs:427–436  ·  view source on GitHub ↗
(&self, driver: &Path)

Source from the content-addressed store, hash-verified

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()]
429 .iter()
430 .collect();
431 utils::create_dir_if_nonexist(&path)?;
432 let base_name = driver.file_name().unwrap().to_str().unwrap();
433 path.push(base_name.strip_suffix(".cc").unwrap());
434 crate::deopt::utils::create_dir_if_nonexist(&path)?;
435 Ok(path)
436 }
437
438 pub fn get_server_logger_path(&self) -> Result<PathBuf> {
439 let path = [self.get_library_output_dir()?, "llm_server.log".into()]

Callers 1

new_checkMethod · 0.80

Calls 3

create_dir_if_nonexistFunction · 0.85
get_library_work_dirMethod · 0.80
pushMethod · 0.45

Tested by

no test coverage detected