dec0012ef8
Commit 87adbbffd4..3e270dcacc "qapi: Add 'if' to (implicit struct|union|alternate) members" (v4.0.0) neglected test coverage, and promptly failed to check the conditions. Review fail. Recent commit "tests/qapi-schema: Demonstrate insufficient 'if' checking" added test coverage, demonstrating the bug. Fix it by add the missing check_if(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190914153506.2151-13-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
7 lines
260 B
JSON
7 lines
260 B
JSON
# Cover branch with invalid 'if'
|
|
{ 'enum': 'Branches', 'data': ['branch1'] }
|
|
{ 'struct': 'Stru', 'data': { 'member': 'str' } }
|
|
{ 'union': 'Uni',
|
|
'base': { 'tag': 'Branches' }, 'discriminator': 'tag',
|
|
'data': { 'branch1': { 'type': 'Stru', 'if': [''] } } }
|