From: Michal Sojka Date: Tue, 14 Jan 2014 11:38:42 +0000 (+0100) Subject: Add readnb test X-Git-Tag: fix-allnoconfig~75 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/commitdiff_plain/450ecb938ee35fdc01f9b022389e7986aa2cb9ca Add readnb test --- diff --git a/ugw/data/bench-all.sh b/ugw/data/bench-all.sh index 3577981..e11b13f 100755 --- a/ugw/data/bench-all.sh +++ b/ugw/data/bench-all.sh @@ -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";;