diff options
author | van Hauser <vh@thc.org> | 2023-06-29 18:00:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 18:00:46 +0300 |
commit | 641d02ab7211585e72e215405cd49c0712a8b4df (patch) | |
tree | 6bf544caf53f4ef7f7ca8ad02c2a412150758aa9 /afl-plot | |
parent | af8c68a774d0271ae6a2145ac566e1c7024e95d5 (diff) | |
parent | 3e1d7941077b1457f702988063d6b9fdd9b80740 (diff) | |
download | afl++-641d02ab7211585e72e215405cd49c0712a8b4df.tar.gz |
Merge pull request #1780 from AFLplusplus/dev
push to stable
Diffstat (limited to 'afl-plot')
-rwxr-xr-x | afl-plot | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/afl-plot b/afl-plot index 230d3bfe..f1f288a3 100755 --- a/afl-plot +++ b/afl-plot @@ -75,8 +75,17 @@ outputdir=`get_abs_path "$2"` if [ ! -f "$inputdir/plot_data" ]; then - echo "[-] Error: input directory is not valid (missing 'plot_data')." 1>&2 - exit 1 + if [ -f "$inputdir/default/plot_data" ]; then + + echo "[-] Error: input directory is not valid (missing 'plot_data'), likely you mean $inputdir/default?" 1>&2 + exit 1 + + else + + echo "[-] Error: input directory is not valid (missing 'plot_data')." 1>&2 + exit 1 + + fi fi @@ -141,7 +150,7 @@ set output '$outputdir/high_freq.png' $GNUPLOT_SETUP plot '$inputdir/plot_data' using 1:4 with filledcurve x1 title 'corpus count' linecolor rgb '#000000' fillstyle transparent solid 0.2 noborder, \\ - '' using 1:3 with filledcurve x1 title 'current fuzz item' linecolor rgb '#f0f0f0' fillstyle transparent solid 0.5 noborder, \\ + '' using 1:3 with filledcurve x1 title 'current item' linecolor rgb '#f0f0f0' fillstyle transparent solid 0.5 noborder, \\ '' using 1:5 with lines title 'pending items' linecolor rgb '#0090ff' linewidth 3, \\ '' using 1:6 with lines title 'pending favs' linecolor rgb '#c00080' linewidth 3, \\ '' using 1:2 with lines title 'cycles done' linecolor rgb '#c000f0' linewidth 3 |