]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - tests/ethflood.sh
Added tests with ethernet load
[can-benchmark.git] / tests / ethflood.sh
diff --git a/tests/ethflood.sh b/tests/ethflood.sh
new file mode 100755 (executable)
index 0000000..e2c1edd
--- /dev/null
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+. _lib.sh
+
+t() {
+    ssh root@${SSH_CONNECTION%% *} 'ping -qf "${SSH_CONNECTION%% *}"' &
+    PID_PING=$!
+    boost_irq_prio
+    PID_S=`vca_canping -s 1 -b -R FF:$RTPRIO -d $CAN1`
+    vca_canping -m 1 -R FF:$RTPRIO -v -g $DRIVER -t 1 -d $CAN0 -w 2 -c 10000
+    kill $PID_S
+    kill $PID_PING
+}
+
+
+
+PLOT_CMD='
+set title "Round-trip time with ethenet load - ping -f (`uname -r`)"
+set logscale y
+set grid
+set xlabel "Time [{/Symbol m}s]"
+set ylabel "Latency profile [messages]"
+plot [0:] "socketcan-1000.dat" with lp title "Socketcan",\
+          "lincan-1000.dat" with lp title "Lincan"
+'
+