summaryrefslogblamecommitdiffstats
path: root/tests/run.sh
blob: a731cc1b3c011b477daea1d6a5b6f2948ca961b9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

           
               




                                                                            

        

       
                                                               
                           







                                                                            
             

                                            
             

                                                                            
         
#!/bin/bash

. ./commands.sh

echo
echo "------------------ Utils-linux-ng regression tests ------------------"
echo

rm -f *~

res=0
count=0
for ts in $(find -maxdepth 1 -regex "\./ts[^\.~]*" |  sort); do
	$TS_TOPDIR/$ts "$1"
	res=$(( $res + $? ))
	count=$(( $count + 1 ))
done

echo
echo "---------------------------------------------------------------------"
if [ $res -eq 0 ]; then
	echo "  All $count tests PASSED"
	res=0
else
	echo "  $res tests of $count FAILED"
	res=1
fi
echo "---------------------------------------------------------------------"
exit $res