mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 12:23:36 +08:00
315932b5ed
A command's or event's 'data' must be a struct type, given either as a
dictionary, or as struct type name.
Commit dd883c6
tightened the checking there, but not enough: we still
accept 'union'. Fix to reject it.
We may want to support union types there, but we'll have to extend
qapi-commands.py and qapi-events.py for it.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
5 lines
165 B
JSON
5 lines
165 B
JSON
# we do not allow union arguments
|
|
# TODO should we support this?
|
|
{ 'union': 'Uni', 'data': { 'case1': 'int', 'case2': 'str' } }
|
|
{ 'command': 'oops', 'data': 'Uni' }
|