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

Method get_seed_coverage

src/deopt.rs:522–527  ·  view source on GitHub ↗
(&self, seed_id: usize)

Source from the content-addressed store, hash-verified

520 }
521
522 pub fn get_seed_coverage(&self, seed_id: usize) -> Result<CodeCoverage> {
523 let profdata = self.get_seed_coverage_file(seed_id)?;
524 let executor = Executor::new(self)?;
525 let coverage = Executor::obtain_cov_from_profdata(&executor, &profdata)?;
526 Ok(coverage)
527 }
528
529 // Save the seed programs into disk.
530 pub fn save_program(&self, program: &Program) -> Result<PathBuf> {

Callers 10

test_update_prompt_queueFunction · 0.80
minimizeFunction · 0.80
fuzz_loopMethod · 0.80
sync_from_previousMethod · 0.80
eval_api_cov_mapFunction · 0.80

Calls 1

Tested by 3

test_update_prompt_queueFunction · 0.64