diff --git a/fuzzers/fuzzbench_text/Makefile.toml b/fuzzers/fuzzbench_text/Makefile.toml index 2082db4005..b18e6679a0 100644 --- a/fuzzers/fuzzbench_text/Makefile.toml +++ b/fuzzers/fuzzbench_text/Makefile.toml @@ -84,6 +84,7 @@ mkdir in || true echo a > in/a # Allow sigterm as exit code timeout 11s ./${FUZZER_NAME} -o out -i in >fuzz_stdout.log || true +cat fuzz_stdout.log if [ -z "$(grep "objectives: 10" fuzz_stdout.log)" ]; then echo "Fuzzer does not generate any testcases or any crashes" exit 1 diff --git a/libafl/src/fuzzer/mod.rs b/libafl/src/fuzzer/mod.rs index 96185c2f88..3d99afbad9 100644 --- a/libafl/src/fuzzer/mod.rs +++ b/libafl/src/fuzzer/mod.rs @@ -72,7 +72,7 @@ pub trait HasObjective: UsesState { fn objective_mut(&mut self) -> &mut Self::Objective; } -/// Evaluate if an input is interesting using the feedback +/// Evaluates if an input is interesting using the feedback pub trait ExecutionProcessor: UsesState { /// Evaluate if a set of observation channels has an interesting state fn process_execution( @@ -88,7 +88,7 @@ pub trait ExecutionProcessor: UsesState { EM: EventFirer; } -/// Evaluate an input modifying the state of the fuzzer +/// Evaluates an input modifying the state of the fuzzer pub trait EvaluatorObservers: UsesState + Sized { /// Runs the input and triggers observers and feedback, /// returns if is interesting an (option) the index of the new