diff options
| author | Markus Armbruster <armbru@redhat.com> | 2015-06-26 17:52:45 +0200 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2015-09-04 15:47:14 +0200 |
| commit | 422e16aac4bd4476f5b40bee3049089de34ef6b6 (patch) | |
| tree | 3b9e4ee4f2706501fa9395aa6c2c451114b3ad3f | |
| parent | 40b3adec13a9e022ff5a2e2b81c243fc0a026746 (diff) | |
| download | focaccia-qemu-422e16aac4bd4476f5b40bee3049089de34ef6b6.tar.gz focaccia-qemu-422e16aac4bd4476f5b40bee3049089de34ef6b6.zip | |
tests/qapi-schema: Document alternate's enum lacks visit function
We generate a declaration, but no definition. The QMP schema has two: Qcow2OverlapChecks and BlockdevRef. Neither visit_type_Qcow2OverlapChecksKind() nor visit_type_BlockdevRefKind() is actually used. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to '')
| -rw-r--r-- | tests/qapi-schema/qapi-schema-test.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qapi-schema/qapi-schema-test.json b/tests/qapi-schema/qapi-schema-test.json index ccadb13785..8337ba941f 100644 --- a/tests/qapi-schema/qapi-schema-test.json +++ b/tests/qapi-schema/qapi-schema-test.json @@ -56,6 +56,7 @@ { 'alternate': 'UserDefAlternate', 'data': { 'uda': 'UserDefA', 's': 'str', 'i': 'int' } } +# FIXME only a declaration of visit_type_UserDefAlternateKind() generated { 'struct': 'UserDefC', 'data': { 'string1': 'str', 'string2': 'str' } } |