Skip to content

Commit 0e149af

Browse files
authored
Allow both fuzz_time and iters in TuneableMutationalStage (#1531)
1 parent 7f0a4f1 commit 0e149af

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

libafl/src/stages/tuneable.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,6 @@ where
178178
let fuzz_time = self.seed_fuzz_time(state)?;
179179
let iters = self.fixed_iters(state)?;
180180

181-
if fuzz_time.is_some() && iters.is_some() {
182-
return Err(Error::illegal_state(
183-
"Both fuzz_time and iters specified; failing fast!",
184-
));
185-
}
186-
187181
start_timer!(state);
188182
let mut testcase = state.corpus().get(corpus_idx)?.borrow_mut();
189183
let Ok(input) = I::try_transform_from(&mut testcase, state, corpus_idx) else {

0 commit comments

Comments
 (0)