10 sec timeout

This commit is contained in:
Andrea Fioraldi 2021-03-17 16:46:29 +01:00
parent 46c69aeee8
commit 774dbc82d1
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,8 @@ fn fuzz(corpus_dirs: Vec<PathBuf>, objective_dir: PathBuf, broker_port: u16) ->
&mut state, &mut state,
&mut restarting_mgr, &mut restarting_mgr,
)?, )?,
Duration::new(0, 3), // 10 seconds timeout
Duration::new(10, 0),
); );
// The actual target run starts here. // The actual target run starts here.

View File

@ -582,7 +582,6 @@ mod tests {
let mut in_process_executor = InProcessExecutor::<NopInput, ()> { let mut in_process_executor = InProcessExecutor::<NopInput, ()> {
harness_fn: test_harness_fn_nop, harness_fn: test_harness_fn_nop,
// TODO: on_crash_fn: Box::new(|_, _, _, _, _| ()),
observers: tuple_list!(), observers: tuple_list!(),
name: "main", name: "main",
phantom: PhantomData, phantom: PhantomData,