summaryrefslogtreecommitdiffstats
path: root/libk8055/test
blob: 7406d81912d61694852d4489214e1d48659dbbf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/bash
if [ -x ./k8055 ]; then
    K8055=./k8055cmd
elif [ -x ./build/libk8055/k8055cmd ]; then
    K8055=./build/libk8055/k8055cmd
else
    echo "unable to find k8055 binary" && exit 1
fi
cpt=0
$K8055 -debug
while [ $cpt -lt 256 ]; do $K8055 -d:$cpt -a1:$cpt -a2:$cpt >/dev/null; ((cpt=cpt+1)); echo -n "."; done
echo "" && $K8055 -debug -d:0 -a1:0 -a2:0