mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
tests: print enum type members more like object type members
Commit 93bda4dd46
changed the internal representation of enum type
members from str to QAPISchemaMember, but we still print only a
string. Has been good enough, as the name is the member's only
attribute of interest, but that's about to change. To prepare, print
them more like object type members.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20181213123724.4866-4-marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
1962bd39d5
commit
1e381b6559
12 changed files with 149 additions and 27 deletions
|
@ -1,7 +1,17 @@
|
|||
object q_empty
|
||||
enum QType ['none', 'qnull', 'qnum', 'qstring', 'qdict', 'qlist', 'qbool']
|
||||
enum QType
|
||||
prefix QTYPE
|
||||
member none
|
||||
member qnull
|
||||
member qnum
|
||||
member qstring
|
||||
member qdict
|
||||
member qlist
|
||||
member qbool
|
||||
module include-simple.json
|
||||
include include-simple-sub.json
|
||||
module include-simple-sub.json
|
||||
enum Status ['good', 'bad', 'ugly']
|
||||
enum Status
|
||||
member good
|
||||
member bad
|
||||
member ugly
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue