Add 'CAN-binder/libs/uds-c/' from commit 'ca20db3dd978871bbb9f01f3c862b510c03d1dc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / uds-c / runtests.sh
1 echo "Running unit tests:"
2
3 for i in $1/*.bin
4 do
5     if test -f $i
6     then
7         if ./$i
8         then
9             echo $i PASS
10         else
11             echo "ERROR in test $i:"
12             exit 1
13         fi
14     fi
15 done
16
17 echo "${txtbld}$(tput setaf 2)All unit tests passed.$(tput sgr0)"