1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#!/bin/sh
# This script tests modules
# To run the script do the following:
# test.sh
#
# Arguments:
# None.
cd ..
ModFile=./local/modules.txt
while read One Two Three Four; do
if [ "$One" = "cvs" ];
then
Rep=$One
ModName=$Three
ModTag=$Four
else
if [ "$One" = "svn" ];
then
Rep=$One
ModName=$Three
ModTag=$Four
else
Rep=cvs
ModName=$One
ModTag=$Two
fi
fi
if [ "$Rep" = "cvs" ];
then
DirModName=$ModName
else
if [ "$ModTag" = "Latest" ];
then
DirModName=$ModName
else
DirModName=$ModName-$ModTag
fi
fi
if [ -d $DirModName/test ]
then
echo
echo "------------------------------------------------------------"
echo "**** Testing $DirModName ****"
echo "------------------------------------------------------------"
cd $DirModName
make test
cd ..
fi
done < $ModFile
exit 0
|