diff options
author | vanhauser-thc <vh@thc.org> | 2022-08-19 09:16:17 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-08-19 09:16:17 +0200 |
commit | 7b2145b914ba3c8443437c68ae29458d832b1e35 (patch) | |
tree | 0084e0af167a02447de79db7119311cf3e104ceb /src/afl-fuzz-run.c | |
parent | 361263b0f24a2172c4d4be09b1e247aa8d799e9b (diff) | |
download | afl++-7b2145b914ba3c8443437c68ae29458d832b1e35.tar.gz |
shorter calibration
Diffstat (limited to 'src/afl-fuzz-run.c')
-rw-r--r-- | src/afl-fuzz-run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c index c0e72ae6..ee4a3298 100644 --- a/src/afl-fuzz-run.c +++ b/src/afl-fuzz-run.c @@ -363,7 +363,7 @@ u8 calibrate_case(afl_state_t *afl, struct queue_entry *q, u8 *use_mem, ++q->cal_failed; afl->stage_name = "calibration"; - afl->stage_max = afl->afl_env.afl_cal_fast ? 3 : CAL_CYCLES; + afl->stage_max = afl->afl_env.afl_cal_fast ? CAL_CYCLES_FAST : CAL_CYCLES; /* Make sure the forkserver is up before we do anything, and let's not count its spin-up time toward binary calibration. */ |