Monotone-Parent: 766baf56d74d898b08d6a686cdd909e3825d8e2f

Monotone-Revision: 808d40a88677de09c4168d17acc5946afe8e9813

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-11-03T14:27:31
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-11-03 14:27:31 +00:00
parent 10833ce7d1
commit 5e94a939a8
4 changed files with 121 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/bin/sh
TOPDIR=../..
if [ ! -f teststrings ]
then
make teststrings
fi
for stringfile in ${TOPDIR}/*/*/*.lproj/Localizable.strings
do
./teststrings "$stringfile" > /dev/null
code=$?
if test $code -eq 0;
then
echo "$stringfile: passed";
else
echo "$stringfile: failed (code: $code)";
fi
done