Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Removing seen_input check.
Browse files Browse the repository at this point in the history
  • Loading branch information
nharper285 committed Oct 30, 2023
1 parent 7e61a8a commit 3389789
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/agent/onefuzz-task/src/tasks/coverage/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ impl CoverageTask {

let heartbeat = self.config.common.init_heartbeat(None).await?;
let job_result = self.config.common.init_job_result().await?;
let mut seen_inputs = false;

let target_exe_path =
try_resolve_setup_relative_path(&self.config.common.setup_dir, &self.config.target_exe)
Expand Down Expand Up @@ -156,10 +155,6 @@ impl CoverageTask {
dir.init_pull().await?;
let dir_count = context.record_corpus(&dir.local_path).await?;

if dir_count > 0 {
seen_inputs = true;
}

info!(
"recorded coverage for {} inputs from {}",
dir_count,
Expand Down

0 comments on commit 3389789

Please sign in to comment.