forked from I2P_Developers/i2p.i2p
test script updates
This commit is contained in:
@ -22,7 +22,7 @@ DIRS="\
|
||||
installer/resources/locale/po \
|
||||
debian/po"
|
||||
|
||||
for i in `find $DIRS -maxdepth 1 -type f -name *.po`
|
||||
for i in `find $DIRS -maxdepth 1 -type f -name \*.po`
|
||||
do
|
||||
echo "Checking $i ..."
|
||||
msgfmt -c $i -o /dev/null
|
||||
|
@ -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 *********"
|
||||
|
Reference in New Issue
Block a user