Revert "Error message in most likely case of using NONASAN and ASAN fuzzers using the same Fuzzer config (#329)"

This reverts commit d71f0cf5bf4fc449585a4087e5fcf4a8eb443e38.
This commit is contained in:
Andrea Fioraldi 2021-10-18 10:46:08 +02:00
parent d71f0cf5bf
commit bc4770fb82

View File

@ -242,10 +242,7 @@ where
.match_name_mut::<MapFeedbackState<T>>(&self.name) .match_name_mut::<MapFeedbackState<T>>(&self.name)
.unwrap(); .unwrap();
if size <= map_state.history_map.len() { assert!(size <= map_state.history_map.len());
panic!("Could be a bug or are you using the same coverage map for NONASAN and ASAN fuzzers? Adjust to use different coverage map for each different config");
}
assert!(size <= observer.map().len()); assert!(size <= observer.map().len());
if self.novelties.is_some() { if self.novelties.is_some() {