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