Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
12b9584
Rework to put `ClientPerfStats` in `State` and pass that along. Still…
ctfhacker Apr 7, 2021
c017d72
Add perf_stats feature to libafl/Cargo.toml
ctfhacker Apr 7, 2021
23061ef
Update feedbacks to have with_perf
ctfhacker Apr 12, 2021
9469776
Merge branch 'real_time_benchmarks' of github.com:AFLplusplus/LibAFL …
ctfhacker Apr 12, 2021
542738c
Merge branch 'dev' into real_time_benchmarks
ctfhacker Apr 18, 2021
fedb5f8
Remove unneeeded print statement
ctfhacker Apr 18, 2021
7423cef
cargo fmt all the things
ctfhacker Apr 18, 2021
4ad9c10
use local llvmint vs cpu specific asm for reading cycle counter
ctfhacker Apr 19, 2021
b9a0c7c
Remove debug testing code
ctfhacker Apr 19, 2021
2a96fe3
Stats timeout to 3 seconds
ctfhacker Apr 19, 2021
55703cb
Inline smallish functions for ClientPerfStats
ctfhacker Apr 19, 2021
042bfce
Remove .libs/llvmint and have the correct conditional compilation of …
ctfhacker Apr 19, 2021
2b6b369
pub(crate) the NUM_FEEDBACK and NUM_STAGES consts
ctfhacker Apr 19, 2021
8219da3
Merge branch 'dev' into real_time_benchmarks
domenukk Apr 26, 2021
33df973
perf_stats->instrospection; merged dev; moved back to x86 stable
domenukk May 1, 2021
b9e75c0
Tcp Broker to Broker Communication (#66)
domenukk May 1, 2021
3fb4626
merged dev
domenukk May 1, 2021
0ac407a
adapted to new feedback interface;;
domenukk May 6, 2021
6cc1e96
clippy fixes
domenukk May 6, 2021
1fa893e
fallback to systemtime on non-x86
domenukk May 6, 2021
5d1eb27
make clippy more strict
domenukk May 7, 2021
f56f340
small fixes
andreafioraldi May 7, 2021
1e61748
bump 0.2.1
andreafioraldi May 7, 2021
92116b9
readme
andreafioraldi May 7, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove debug testing code
  • Loading branch information
ctfhacker committed Apr 19, 2021
commit b9a0c7c19f22693d1044981b882407203d183dfe
3 changes: 0 additions & 3 deletions fuzzers/libfuzzer_libpng/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,6 @@ fn fuzz(corpus_dirs: Vec<PathBuf>, objective_dir: PathBuf, broker_port: u16) ->

fuzzer.fuzz_loop(&mut state, &mut executor, &mut restarting_mgr, &scheduler)?;

print!("DONE\n");
loop {}

// Never reached
Ok(())
}