changed script maint/doctest to utf-8 support.

Signed-off-by: Ilia Maslakov <il.smind@gmail.com>
This commit is contained in:
Ilia Maslakov 2011-02-16 20:21:01 +00:00
parent e4ee7ea383
commit bd3c950dce

View File

@ -17,11 +17,18 @@ one_test() {
fi fi
} }
test -r doc/mc.1.in || { echo "ERROR: cannot read doc/mc.1.in" 2>&1; exit 1; } test -r doc/man/mc.1.in || { echo "ERROR: cannot read doc/mc.1.in" 2>&1; exit 1; }
# Test the documentation for possible errors. # Test the documentation for possible errors.
one_test find doc -name '*.[1-9].in' -exec groff -wall -mandoc -Tps {} \; for i in `find doc -name '*.[1-9].in'`; do
one_test find doc -name '*.[1-9].in' -exec nroff -mandoc -Tlatin1 {} \; echo "test $i"
cat $i |preconv -e UTF8| groff -wall -mandoc -Tutf8 | grep "warning:"
done
for i in `find doc -name '*.[1-9].in'`; do
echo "test $i"
cat $i |preconv -e UTF8| nroff -Tutf8 -mandoc | grep "warning:"
done
# Check the English manuals to be in ASCII. # Check the English manuals to be in ASCII.
one_test find doc -maxdepth 1 -name '*.[1-9].in' -exec groff -wall -Tascii {} \; one_test find doc -maxdepth 1 -name '*.[1-9].in' -exec groff -wall -Tascii {} \;