aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/flat-union-array-branch.json
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2015-06-10 13:03:04 +0200
committerMarkus Armbruster <armbru@redhat.com>2015-06-18 14:19:47 +0200
commit75276710ae0a9f802a9774a8d845a2c84f89305a (patch)
treeb015e574a8c5637bde6c1861a95784d0e37fc6d0 /tests/qapi-schema/flat-union-array-branch.json
parent00e4b285a31d19dcd88bd46729c9e09bfc9cc7fd (diff)
tests/qapi-schema: New flat union array branch test case
The new test demonstrates another generator crash. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tests/qapi-schema/flat-union-array-branch.json')
-rw-r--r--tests/qapi-schema/flat-union-array-branch.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/qapi-schema/flat-union-array-branch.json b/tests/qapi-schema/flat-union-array-branch.json
new file mode 100644
index 0000000000..0b98820a8f
--- /dev/null
+++ b/tests/qapi-schema/flat-union-array-branch.json
@@ -0,0 +1,12 @@
+# we require flat union branches to be a struct
+{ 'enum': 'TestEnum',
+ 'data': [ 'value1', 'value2' ] }
+{ 'struct': 'Base',
+ 'data': { 'enum1': 'TestEnum' } }
+{ 'struct': 'TestTypeB',
+ 'data': { 'integer': 'int' } }
+{ 'union': 'TestUnion',
+ 'base': 'Base',
+ 'discriminator': 'enum1',
+ 'data': { 'value1': ['TestTypeB'],
+ 'value2': 'TestTypeB' } }