We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e67f2c4 commit c83749cCopy full SHA for c83749c
afl-stat.sh
@@ -13,8 +13,10 @@ while [ -n "$1" ]; do
13
egrep 'run_time|execs_done|execs_per_sec|paths_total|^unique_|stability' "$1"/fuzzer_stats
14
SECONDS=`egrep run_time "$1"/fuzzer_stats | awk '{print$3}'`
15
test -n "$SECONDS" && {
16
+ DAYS=`expr $SECONDS / 86400`
17
+ SECONDS=`expr $SECONDS % 86400`
18
TIME=`date -u -d "@$SECONDS" +"%T"`
- echo "run_clock : $TIME"
19
+ echo "run_clock : $DAYS:$TIME"
20
}
21
} | sort | tee "$1"/stats.out
22
LINES=
0 commit comments