diff options
author | Markus Armbruster | 2019-09-13 22:13:43 +0200 |
---|---|---|
committer | Markus Armbruster | 2019-09-24 14:07:22 +0200 |
commit | 0ced9531f17c1c28fa4f29b352729c7f40c2ae30 (patch) | |
tree | 01b884f181062407e78f158d48c4d085e438852b /tests/qapi-schema/union-empty.err | |
parent | qapi: Permit alternates with just one branch (diff) | |
download | qemu-0ced9531f17c1c28fa4f29b352729c7f40c2ae30.tar.gz qemu-0ced9531f17c1c28fa4f29b352729c7f40c2ae30.tar.xz qemu-0ced9531f17c1c28fa4f29b352729c7f40c2ae30.zip |
qapi: Permit omitting all flat union branches
Absent flat union branches default to the empty struct (since commit
800877bb16 "qapi: allow empty branches in flat unions"). But an
attempt to omit all of them is rejected with "Union 'FOO' has no
branches". Harmless oddity, but it's easy to avoid, so do that.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20190913201349.24332-11-armbru@redhat.com>
[Commit message typo fixed]
Diffstat (limited to 'tests/qapi-schema/union-empty.err')
-rw-r--r-- | tests/qapi-schema/union-empty.err | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qapi-schema/union-empty.err b/tests/qapi-schema/union-empty.err index 12c20221bd..d4241a38a2 100644 --- a/tests/qapi-schema/union-empty.err +++ b/tests/qapi-schema/union-empty.err @@ -1 +1 @@ -tests/qapi-schema/union-empty.json:2: Union 'Union' cannot have empty 'data' +tests/qapi-schema/union-empty.json:2: Union 'Union' has no branches |