test-gendoc
20 lines
| 624 B
| text/plain
|
TextLexer
/ tests / test-gendoc
Martin Geisler
|
r9446 | #!/bin/sh | ||
Martin Geisler
|
r10971 | "$TESTDIR/hghave" docutils || exit 80 | ||
Martin Geisler
|
r9446 | |||
Martin Geisler
|
r9485 | HGENCODING=UTF-8 | ||
export HGENCODING | ||||
Martin Geisler
|
r9446 | |||
Martin Geisler
|
r9485 | for PO in C $TESTDIR/../i18n/*.po; do | ||
Matt Mackall
|
r10282 | LOCALE=`basename $PO .po` | ||
Martin Geisler
|
r9485 | echo | ||
echo "% extracting documentation from $LOCALE" | ||||
echo ".. -*- coding: utf-8 -*-" > gendoc-$LOCALE.txt | ||||
echo "" >> gendoc-$LOCALE.txt | ||||
LC_ALL=$LOCALE python $TESTDIR/../doc/gendoc.py >> gendoc-$LOCALE.txt || exit | ||||
Martin Geisler
|
r10971 | # We call runrst without adding "--halt warning" to make it report | ||
# all errors instead of stopping on the first one. | ||||
echo "checking for parse errors" | ||||
python $TESTDIR/../doc/runrst html gendoc-$LOCALE.txt /dev/null | ||||
Martin Geisler
|
r9485 | done | ||