test script updates

This commit is contained in:
zzz
2014-04-01 12:59:27 +00:00
parent 90cd68900e
commit fd916a7646
2 changed files with 13 additions and 1 deletions

View File

@ -54,6 +54,18 @@ do
fi
done
echo "Checking getopt properties files ..."
for i in `find core/java/src/gnu/getopt -name \*.properties -type f`
do
#echo "Checking $i ..."
iconv -f UTF8 -t UTF8 $i -o /dev/null
if [ $? -ne 0 ]
then
echo "********* FAILED CHECK FOR $i *************"
FAIL=1
fi
done
if [ "$FAIL" != "" ]
then
echo "******** At least one file failed check *********"