mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 11:08:06 +00:00
fix stat display
This commit is contained in:
6
TODO.md
6
TODO.md
@ -4,7 +4,6 @@
|
||||
|
||||
- get "no global vars" working
|
||||
|
||||
|
||||
## Further down the road
|
||||
|
||||
afl-fuzz:
|
||||
@ -13,6 +12,11 @@ afl-fuzz:
|
||||
- ascii_only mode for mutation output
|
||||
- setting min_len/max_len/start_offset/end_offset limits for mutation output
|
||||
|
||||
llvm_mode:
|
||||
- added context sensitive branch coverage
|
||||
- add CT cov and ngram cov to LTO and InsTrim
|
||||
- better whitelist solution for LTO
|
||||
|
||||
gcc_plugin:
|
||||
- laf-intel
|
||||
- better instrumentation (seems to be better with gcc-9+)
|
||||
|
@ -1054,7 +1054,7 @@ static void handle_existing_out_dir(afl_state_t *afl) {
|
||||
|
||||
/* Let's see how much work is at stake. */
|
||||
|
||||
if (!afl->in_place_resume &&
|
||||
if (!afl->in_place_resume && last_update > start_time2 &&
|
||||
last_update - start_time2 > OUTPUT_GRACE * 60) {
|
||||
|
||||
SAYF("\n" cLRD "[-] " cRST
|
||||
|
@ -162,17 +162,24 @@ u8 *DTD(u8 *buf, size_t len, u64 cur_ms, u64 event_ms) {
|
||||
s32 t_d, t_h, t_m, t_s;
|
||||
u8 int_buf[16];
|
||||
|
||||
if (!event_ms) snprintf(buf, len, "none seen yet");
|
||||
if (!event_ms) {
|
||||
|
||||
delta = cur_ms - event_ms;
|
||||
snprintf(buf, len, "none seen yet");
|
||||
|
||||
t_d = delta / 1000 / 60 / 60 / 24;
|
||||
t_h = (delta / 1000 / 60 / 60) % 24;
|
||||
t_m = (delta / 1000 / 60) % 60;
|
||||
t_s = (delta / 1000) % 60;
|
||||
} else {
|
||||
|
||||
DI(int_buf, sizeof(int_buf), t_d);
|
||||
snprintf(buf, len, "%s days, %d hrs, %d min, %d sec", int_buf, t_h, t_m, t_s);
|
||||
delta = cur_ms - event_ms;
|
||||
|
||||
t_d = delta / 1000 / 60 / 60 / 24;
|
||||
t_h = (delta / 1000 / 60 / 60) % 24;
|
||||
t_m = (delta / 1000 / 60) % 60;
|
||||
t_s = (delta / 1000) % 60;
|
||||
|
||||
DI(int_buf, sizeof(int_buf), t_d);
|
||||
snprintf(buf, len, "%s days, %d hrs, %d min, %d sec", int_buf, t_h, t_m,
|
||||
t_s);
|
||||
|
||||
}
|
||||
|
||||
return buf;
|
||||
|
||||
|
Reference in New Issue
Block a user