mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
qapi/expr.py: Check type of union and alternate 'data' member
Prior to this commit, specifying a non-object value here causes the QAPI parser to crash in expr.py with a stack trace with (likely) an AttributeError when we attempt to call that value's items() method. This member needs to be an object (Dict), and not anything else. Add a check for this with a nicer error message, and formalize that check with new test cases that exercise that error. Signed-off-by: John Snow <jsnow@redhat.com> Message-Id: <20210421182032.3521476-8-jsnow@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
926bb8add7
commit
4918bb7def
8 changed files with 23 additions and 0 deletions
2
tests/qapi-schema/alternate-data-invalid.err
Normal file
2
tests/qapi-schema/alternate-data-invalid.err
Normal file
|
@ -0,0 +1,2 @@
|
|||
alternate-data-invalid.json: In alternate 'Alt':
|
||||
alternate-data-invalid.json:2: 'data' must be an object
|
Loading…
Add table
Add a link
Reference in a new issue