mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-17 16:15:07 -04:00
Run the correct tests (not 0)
This commit is contained in:
parent
d2f767ddc7
commit
17f112d4c2
@ -3,10 +3,9 @@
|
|||||||
let "suc = 0"
|
let "suc = 0"
|
||||||
let "fail = 0"
|
let "fail = 0"
|
||||||
|
|
||||||
for tnam in `ls test*.sh`
|
for (( tno = 1 ; $tno < 62 ; tno = $tno + 1 )); do
|
||||||
do
|
./testCheck.sh $tno
|
||||||
echo "Running test $tnam"
|
if [ "$?" -eq "0" ]; then
|
||||||
if ./$tnam; then
|
|
||||||
echo "OK"
|
echo "OK"
|
||||||
let "suc = $(($suc + 1))"
|
let "suc = $(($suc + 1))"
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user