X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/f8b2e90e2efd662fece4f5ff0deacc7b12351791..b1cad43854f775cfd8bbab0d8279758b00e2b2b6:/gw-tests/nop-canalyzer.sh diff --git a/gw-tests/nop-canalyzer.sh b/gw-tests/nop-canalyzer.sh index 18b1fd3..8a352de 100755 --- a/gw-tests/nop-canalyzer.sh +++ b/gw-tests/nop-canalyzer.sh @@ -9,7 +9,7 @@ wait_for_key() { } main() { - if ! [ "$INTERACTIVE" ]; then echo "Skipping interactive test $0"; return; fi + if ! [ "$INTERACTIVE" ]; then echo "Skipping interactive test $0"; SKIPPED=1; return; fi sshgw cangw -A -s can0 -d can1 latester -d can0 -d can1 -d can2 -c $COUNT $(traffic_and_length 2) -n len2 @@ -35,16 +35,16 @@ plot_cmds() { set title "Measurment precission: PC versus CANalyzer" set termoption dashed set grid xtics mxtics ytics mytics lw 1, lw 0.5 -set xlabel "Time [ms]" -set ylabel "Latency profile [messages]" -plot [$range] [1:$COUNT] \ - "len2-hist.txt" with lp lc 1 lt 1 title "PC: 2 byte messages", \ - "len4-hist.txt" with lp lc 2 lt 1 title "PC: 4 byte messages", \ - "len6-hist.txt" with lp lc 3 lt 1 title "PC: 6 byte messages", \ - "len8-hist.txt" with lp lc 4 lt 1 title "PC: 8 byte messages", \ - "canalyzer-2-hist.txt" with lp lc 1 lt 2 title "CANalyzer: 2 byte messages", \ - "canalyzer-4-hist.txt" with lp lc 2 lt 2 title "CANalyzer: 4 byte messages", \ - "canalyzer-6-hist.txt" with lp lc 3 lt 2 title "CANalyzer: 6 byte messages", \ +set xlabel "Total latency [ms]" +set ylabel "Latency profile [frames]" +plot [$range] [1:$COUNT] \\ + "len2-hist.txt" with lp lc 1 lt 1 title "PC: 2 byte messages", \\ + "len4-hist.txt" with lp lc 2 lt 1 title "PC: 4 byte messages", \\ + "len6-hist.txt" with lp lc 3 lt 1 title "PC: 6 byte messages", \\ + "len8-hist.txt" with lp lc 4 lt 1 title "PC: 8 byte messages", \\ + "canalyzer-2-hist.txt" with lp lc 1 lt 2 title "CANalyzer: 2 byte messages", \\ + "canalyzer-4-hist.txt" with lp lc 2 lt 2 title "CANalyzer: 4 byte messages", \\ + "canalyzer-6-hist.txt" with lp lc 3 lt 2 title "CANalyzer: 6 byte messages", \\ "canalyzer-8-hist.txt" with lp lc 4 lt 2 title "CANalyzer: 8 byte messages" EOF }