Verify documentation covers exposed symbols.

Add check-missing-doc script to make sure the documentation matches the
complete list of symbols exported from the header files before release.
This commit is contained in:
Keith Packard 2007-11-03 22:01:33 -07:00
parent c833409f6b
commit 9a54f8a194
2 changed files with 28 additions and 1 deletions

View File

@ -86,7 +86,11 @@ docdir=@DOCDIR@
DOC_FILES=$(TXT) $(PDF) $(HTML_FILES)
LOCAL_DOCS=$(man3_MANS) $(man5_MANS) $(DOC_FILES) $(HTML_DIR)/*
EXTRA_DIST=$(LOCAL_DOCS) $(SGML) $(DOC_FUNCS_FNCS) func.sgml confdir.sgml.in
check_SCRIPTS=check-missing-doc
TESTS_ENVIRONMENT=top_srcdir=${top_srcdir} sh
TESTS=check-missing-doc
EXTRA_DIST=$(LOCAL_DOCS) $(SGML) $(DOC_FUNCS_FNCS) $(check_SCRIPTS) func.sgml confdir.sgml.in
SUFFIXES=.fncs .sgml .txt .html

23
doc/check-missing-doc Normal file
View File

@ -0,0 +1,23 @@
#!/bin/sh
header=fontconfig-header
doc=fontconfig-doc
#trap "rm $header $doc" 0 1 15
top_srcdir=${top_srcdir-".."}
(
cat $top_srcdir/fontconfig/*.h | grep '^Fc' |
grep -v FcPublic | sed 's/[^a-zA-Z0-9].*//';
cat $top_srcdir/fontconfig/*.h |
sed -n 's/#define \(Fc[a-zA-Z]*\)(.*$/\1/p') |
sort -u > $header
grep '@FUNC@' $top_srcdir/doc/*.fncs |
awk '{print $2}' |
sort -u > $doc
if cmp $doc $header > /dev/null; then
exit 0
fi
echo \
'Library Export Documentation'
diff -y $header $doc | grep '[<>]'