]> rtime.felk.cvut.cz Git - can-benchmark.git/commitdiff
Add readnb test
authorMichal Sojka <sojkam1@fel.cvut.cz>
Tue, 14 Jan 2014 11:38:42 +0000 (12:38 +0100)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Tue, 14 Jan 2014 15:03:02 +0000 (16:03 +0100)
ugw/data/bench-all.sh

index 3577981ab3fae852141c3f1951b0a1e2bf2a733e..e11b13fb2a16f94f5552289cab628081d3d6dde8 100755 (executable)
@@ -3,13 +3,14 @@
 set -x
 set -e
 
-methods=${@:-rtems kernel read-write mmap-write mmapbusy-write mmapbusy-mmap readbusy-write}
+methods=${@:-rtems kernel read-write readnb-write mmap-write mmapbusy-write mmapbusy-mmap readbusy-write}
 
 for method in $methods; do
     case $method in
        rtems) ../../rtems/gw/boot --expect '"]", sub { shift->send_slow(0.1, "startGW\n"); }' --exiton 'tasks started';;
        kernel)         ../ppc/boot -a kernelgw --exiton "Kernel GW started";;
        read-write)     ../ppc/boot             --exiton "UGW started";;
+       readnb-write)   ../ppc/boot -a "ugw=|-n|" --exiton "UGW started";;
        mmap-write)     ../ppc/boot -a "ugw=|-r mmap|" --exiton "UGW started";;
        mmapbusy-write) ../ppc/boot -a "ugw=|-r mmapbusy|" --exiton "UGW started";;
        mmapbusy-mmap)  ../ppc/boot -a "ugw=|-r mmapbusy -t mmap|" --exiton "UGW started";;