30 lines
554 B
Bash
30 lines
554 B
Bash
plot () {
|
|
[ ! -f ~/code/FRET/LibAFL/fuzzers/FRET/benchmark/remote/${1}${2}_all.png ] && Rscript plot_multi.r remote ${1}${2} ~/code/FRET/LibAFL/fuzzers/FRET/benchmark/remote
|
|
}
|
|
|
|
# Only bytes
|
|
|
|
export SUFFIX="_seq_bytes"
|
|
|
|
plot waters $SUFFIX
|
|
plot release $SUFFIX
|
|
plot copter $SUFFIX
|
|
plot interact $SUFFIX
|
|
|
|
# Only interrupts
|
|
|
|
export SUFFIX="_seq_int"
|
|
|
|
plot waters $SUFFIX
|
|
plot release $SUFFIX
|
|
plot copter $SUFFIX
|
|
plot interact $SUFFIX
|
|
|
|
# Full
|
|
|
|
export SUFFIX="_seq_full"
|
|
|
|
plot waters $SUFFIX
|
|
plot release $SUFFIX
|
|
plot copter $SUFFIX
|
|
plot interact $SUFFIX |