summaryrefslogtreecommitdiffstats
path: root/doc/tools/doxy.py
diff options
context:
space:
mode:
authorBen Kaduk <kaduk@mit.edu>2012-12-12 13:23:03 -0500
committerBen Kaduk <kaduk@mit.edu>2012-12-14 11:05:43 -0500
commit060b1eb1e38b294495adab784da32ca4e9871d20 (patch)
treea50d6414788ad41b04ed88aac610d586db29b331 /doc/tools/doxy.py
parent311347e5e9d9208e2d341b8f8aed37791a4de090 (diff)
downloadkrb5-060b1eb1e38b294495adab784da32ca4e9871d20.tar.gz
krb5-060b1eb1e38b294495adab784da32ca4e9871d20.tar.xz
krb5-060b1eb1e38b294495adab784da32ca4e9871d20.zip
Better names for doxygen-Sphinx bridge functions
It is confusing when the codepath for the production doc build involves calling functions with names like "test". Rename things which are in active use so that routines which are actually only used for testing are more discernable as such. ticket: 7505 (new) tags: pullup target_version: 1.11
Diffstat (limited to 'doc/tools/doxy.py')
-rw-r--r--doc/tools/doxy.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tools/doxy.py b/doc/tools/doxy.py
index c8a4b9dad..c82f88eb7 100644
--- a/doc/tools/doxy.py
+++ b/doc/tools/doxy.py
@@ -50,12 +50,12 @@ def processOptions():
parser.error("Input and output directories are required")
if action == "all" or action == "typedef":
- tester = DoxyTypesTest(in_dir, out_dir)
- tester.run_tests()
+ builder = DoxyBuilderTypes(in_dir, out_dir)
+ builder.run_all()
if action == "all" or action == "func" or action == "function":
- tester = DoxyFuncsTest(in_dir, out_dir)
- tester.run_tests()
+ builder = DoxyBuilderFuncs(in_dir, out_dir)
+ builder.run_all()
if __name__ == '__main__':