do not use error as objective for showmap

This commit is contained in:
Alwin Berger 2024-10-21 17:29:56 +02:00
parent a7f24da786
commit f9f59211fb

View File

@ -451,7 +451,7 @@ let run_client = |state: Option<_>, mut mgr, _core_id| {
); );
// A feedback to choose if an input is producing an error // A feedback to choose if an input is producing an error
let mut objective = feedback_or_fast!(CrashFeedback::new(), TimeoutFeedback::new(), SystraceErrorFeedback::new(cli.dump_cases || matches!(cli.command, Commands::Fuzz{..}), Some(10))); let mut objective = feedback_or_fast!(CrashFeedback::new(), TimeoutFeedback::new(), SystraceErrorFeedback::new(matches!(cli.command, Commands::Fuzz{..}), Some(10)));
// If not restarting, create a State from scratch // If not restarting, create a State from scratch
let mut state = state.unwrap_or_else(|| { let mut state = state.unwrap_or_else(|| {