summaryrefslogtreecommitdiffstats
path: root/testing/testsqlite3.py
Commit message (Collapse)AuthorAgeFilesLines
* Make testsqlite3.py python script running with python 3albert-github2020-09-081-6/+6
| | | | | The testsqlite3.py didn't run under python 3 (found by means of pylint). Making it runnable under python 2 and python 3.
* Spelling corrections for testing directoryalbert-github2019-11-041-1/+1
| | | | | | Spelling corrections as found by codespell and in #561. Most reported problems were already fixed, others are fixed here.
* testsqlite3: a test for sqlite3genAdrian Negreanu2014-02-011-0/+146
This verifies the 'memberdef' table against the generated XMLs. It accomplishes this by executing a sql query, constructed by iterating through the children and attributes of the memberdef XML element. The information translated from xml to sql, is then removed from the DOM, and the unprocessed bits are printed as warning messages. usage: testing/testsqlite3.py -d /.../doxygen_sqlite3.db -x /.../xml/test__x11_8cpp.xml output: WARNING: 'location' has unprocessed attr 'bodyend' WARNING: 'memberdef' has unprocessed child elem 'briefdescription' WARNING: 'memberdef' has unprocessed child elem 'detaileddescription' WARNING: 'memberdef' has unprocessed child elem 'inbodydescription' WARNING: 'memberdef' has unprocessed child elem 'location' WARNING: 'memberdef' has unprocessed attr 'kind' WARNING: 'memberdef' has unprocessed attr 'prot' WARNING: 'memberdef' has unprocessed attr 'static' WARNING: 'memberdef' has unprocessed attr 'id'