]> rtime.felk.cvut.cz Git - can-benchmark.git/blob - gw-tests/nop-time.sh
run master ssh indefinitely
[can-benchmark.git] / gw-tests / nop-time.sh
1 #!/bin/bash
2
3 . lib.sh
4
5 main() {
6         ln -s ../nop-highprio/*.txt .
7 }
8
9 plot_cmds() {
10     cat <<'EOF'
11 set title "Single GW job for all messages, no modifications"
12 set grid
13 set xlabel "Time [s]"
14 set ylabel "Latency [{/Symbol m}s]"
15 plot [:] [:500] \
16           "len2-msgs.txt" using 2:(1000000*$14) with points title "2 byte messages", \
17           "len4-msgs.txt" using 2:(1000000*$14) with points title "4 byte messages", \
18           "len6-msgs.txt" using 2:(1000000*$14) with points title "6 byte messages", \
19           "len8-msgs.txt" using 2:(1000000*$14) with points title "8 byte messages"
20 EOF
21 }
22     
23 test_end
24