mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
tests/qapi-schema: Make test-qapi.py print docs again
test-qapi.py used to print the internal representation of doc comments (commit3313b61
). This went away when we dropped the doc comments in positive tests (commit87c16dc
). Bring it back, because I'm going to add real positive doc comment tests. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1490015515-25851-5-git-send-email-armbru@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
32b8a2ad61
commit
818c331833
1 changed files with 11 additions and 0 deletions
|
@ -55,3 +55,14 @@ class QAPISchemaTestVisitor(QAPISchemaVisitor):
|
|||
|
||||
schema = QAPISchema(sys.argv[1])
|
||||
schema.visit(QAPISchemaTestVisitor())
|
||||
|
||||
for doc in schema.docs:
|
||||
if doc.symbol:
|
||||
print 'doc symbol=%s' % doc.symbol
|
||||
else:
|
||||
print 'doc freeform'
|
||||
print ' body=\n%s' % doc.body
|
||||
for arg, section in doc.args.iteritems():
|
||||
print ' arg=%s\n%s' % (arg, section)
|
||||
for section in doc.sections:
|
||||
print ' section=%s\n%s' % (section.name, section)
|
||||
|
|
Loading…
Add table
Reference in a new issue