From 30b7895b99f2fe71697f53a91105b42bb93640ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Sun, 27 Feb 2011 16:41:19 +0100 Subject: update libk8055/test --- libk8055/test | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libk8055/test b/libk8055/test index bb46807..355fd45 100755 --- a/libk8055/test +++ b/libk8055/test @@ -1,4 +1,12 @@ #! /bin/bash +if [ -x ./k8055 ]; then + K8055=./k8055 +elif [ -x ./build/libk8055/k8055 ]; then + K8055=./build/libk8055/k8055 +else + echo "unable to find k8055 binary" && exit 1 +fi cpt=0 -while [ $cpt -lt 256 ]; do ./build/libk8055/k8055 -d:$cpt -a1:$cpt -a2:$cpt; ((cpt=cpt+1)); done -./build/libk8055/k8055 -d:0 -a1:0 -a2: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 -- cgit v1.1-2-g2b99