]> rtime.felk.cvut.cz Git - can-benchmark.git/blob - gw-tests/mod.sh
Fix typo
[can-benchmark.git] / gw-tests / mod.sh
1 #!/bin/bash
2
3 . lib.sh
4
5 LATESTER_OPTS="-d can0 -d can1 -d can2 -o -l 8 -c $COUNT"
6
7 main() {
8     sshgw cangw -A -s can0 -d can1
9     latester $LATESTER_OPTS -h hist.dat -f time.dat
10
11     cleanupgw
12     sshgw cangw -A -s can0 -d can1 -m OR:D:0.0.0000123400000000 \
13                                    -m SET:IL:123.8.0000000000000000
14     latester $LATESTER_OPTS -h hist-mod.dat -f time-mod.dat
15
16     cleanupgw
17     sshgw cangw -A -s can0 -d can1 -m AND:ID:0.0.ffff000000000000 \
18                                    -m OR:D:0.0.0000123400000000 \
19                                    -m XOR:D:0.0.0000000012345678 \
20                                    -m SET:IL:123.8.0000000000000000
21     latester $LATESTER_OPTS -h hist-mod2.dat -f time-mod2.dat
22
23     cleanupgw
24     sshgw cangw -A -s can0 -d can1 -m AND:ID:0.0.ffff000000000000 \
25                                    -m OR:D:0.0.0000123400000000 \
26                                    -m XOR:D:0.0.0000000012345678 \
27                                    -m SET:IL:123.8.0000000000000000 \
28                                    -x 0:6:7:0
29     latester $LATESTER_OPTS -h hist-modcsxor.dat -f time-modcsxor.dat
30     cleanupgw
31     sshgw cangw -A -s can0 -d can1 -m AND:ID:0.0.ffff000000000000 \
32                                    -m OR:D:0.0.0000123400000000 \
33                                    -m XOR:D:0.0.0000000012345678 \
34                                    -m SET:IL:123.8.0000000000000000 \
35                                    -p 3 -c 0:6:7:0:0:00D013C326F635E54C9C5F8F6ABA79A998488B5BBE6EAD7DD404C717F222E13183539040A575B666CF1FDC0CE939FA2A1BCB08D83DED2EFE5787449471A162B2B565A67693438050F929EA3ADF0FCC1C2DFD3EEE0BDB18C861B172A24797548436E625F510C003D37AAA69B95C8C4F9FAE7EBD6D88589B4BE232F121C414D707D909CA1AFF2FEC3C95458656B363A0704191528267B774A40DDD1ECE2BFB38E85A8A49997CAC6FBF16C605D530E023F3C212D101E434F7278E5E9D4DA878BB6B6CBC7FAF4A9A598920F033E306D615C5F424E737D202C111B868AB7B9E4E8D5DEF3FFC2CC919DA0AA373B0608555964677A764B4518142923BEB28F81DCD0EDE
36     latester $LATESTER_OPTS -h hist-modcscrc8.dat -f time-modcscrc8.dat
37 }
38
39 plot_cmds() {
40     cat <<EOF
41 set title "Single GW, with modifications, no filters, 8 byte messages"
42 set logscale y
43 set grid
44 set xlabel "Time [{/Symbol m}s]"
45 set ylabel "Latency profile [messages]"
46 plot [0:600] [1:$COUNT] \
47           "hist.dat" with lp lt 1 title "No modifications", \
48           "hist-mod.dat" with lp lt 2 title "Two modifications", \
49           "hist-mod2.dat" with lp lt 3 title "Four modifications", \
50           "hist-modcsxor.dat" with lp lt 4 title "Four modifications and XOR checksum",\
51           "hist-modcscrc8.dat" with lp lt 5 title "Four modifications and CRC8 checksum"
52 EOF
53 }
54     
55 test_end
56