sapling/tests/test-gendoc.t

33 lines
1.1 KiB
Perl
Raw Normal View History

2014-08-06 20:43:59 +04:00
#require docutils
#require gettext
2014-08-06 20:43:59 +04:00
2010-09-26 22:41:32 +04:00
Test document extraction
$ HGENCODING=UTF-8
$ export HGENCODING
$ { echo C; ls "$TESTDIR/../i18n"/*.po | sort; } | while read PO; do
> LOCALE=`basename "$PO" .po`
2010-09-26 22:41:32 +04:00
> echo "% extracting documentation from $LOCALE"
> LANGUAGE=$LOCALE python "$TESTDIR/../doc/gendoc.py" >> gendoc-$LOCALE.txt 2> /dev/null || exit
2010-09-26 22:41:32 +04:00
>
> if [ $LOCALE != C ]; then
> if [ ! -f $TESTDIR/test-gendoc-$LOCALE.t ]; then
> echo missing test-gendoc-$LOCALE.t
> fi
> cmp -s gendoc-C.txt gendoc-$LOCALE.txt && echo "** NOTHING TRANSLATED ($LOCALE) **"
> fi
> done; true
2010-09-26 22:41:32 +04:00
% extracting documentation from C
% extracting documentation from da
% extracting documentation from de
% extracting documentation from el
% extracting documentation from fr
% extracting documentation from it
% extracting documentation from ja
% extracting documentation from pt_BR
% extracting documentation from ro
% extracting documentation from ru
2010-09-26 22:41:32 +04:00
% extracting documentation from sv
% extracting documentation from zh_CN
% extracting documentation from zh_TW