diff options
author | van Hauser <vh@thc.org> | 2020-07-06 22:29:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 22:29:23 +0200 |
commit | cade0214db905626ac0865e2107262d2c5577c88 (patch) | |
tree | a45d90ee621e3d3e6627cb595c5b6918e78ac88f | |
parent | 0aed549df102cde6a60dc9ef57524413e978814f (diff) | |
parent | 2f5cdb72c896d44d8aa613c94e9c102aa3bddcae (diff) | |
download | afl++-cade0214db905626ac0865e2107262d2c5577c88.tar.gz |
Merge pull request #445 from toralf/fix-y-axis-of-low_freq.png
afl-plot: scale y-axis of low_freq.png with integers
-rwxr-xr-x | afl-plot | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/afl-plot b/afl-plot index 66c16870..0faed0ec 100755 --- a/afl-plot +++ b/afl-plot @@ -127,6 +127,9 @@ set key outside set autoscale xfixmin set autoscale xfixmax +set xlabel "all times in UTC" font "small" + +set ytics auto plot '$inputdir/plot_data' using 1:4 with filledcurve x1 title 'total paths' linecolor rgb '#000000' fillstyle transparent solid 0.2 noborder, \\ '' using 1:3 with filledcurve x1 title 'current path' linecolor rgb '#f0f0f0' fillstyle transparent solid 0.5 noborder, \\ '' using 1:5 with lines title 'pending paths' linecolor rgb '#0090ff' linewidth 3, \\ @@ -136,6 +139,7 @@ plot '$inputdir/plot_data' using 1:4 with filledcurve x1 title 'total paths' lin set terminal png truecolor enhanced size 1000,200 butt set output '$outputdir/low_freq.png' +set ytics 1 plot '$inputdir/plot_data' using 1:8 with filledcurve x1 title '' linecolor rgb '#c00080' fillstyle transparent solid 0.2 noborder, \\ '' using 1:8 with lines title ' uniq crashes' linecolor rgb '#c00080' linewidth 3, \\ '' using 1:9 with lines title 'uniq hangs' linecolor rgb '#c000f0' linewidth 3, \\ @@ -144,6 +148,7 @@ plot '$inputdir/plot_data' using 1:8 with filledcurve x1 title '' linecolor rgb set terminal png truecolor enhanced size 1000,200 butt set output '$outputdir/exec_speed.png' +set ytics auto plot '$inputdir/plot_data' using 1:11 with filledcurve x1 title '' linecolor rgb '#0090ff' fillstyle transparent solid 0.2 noborder, \\ '$inputdir/plot_data' using 1:11 with lines title ' execs/sec' linecolor rgb '#0090ff' linewidth 3 smooth bezier; |