aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qapi-schema/flat-union-base-star.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qapi-schema/flat-union-base-star.json')
-rw-r--r--tests/qapi-schema/flat-union-base-star.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/qapi-schema/flat-union-base-star.json b/tests/qapi-schema/flat-union-base-star.json
new file mode 100644
index 00000000..5099439a
--- /dev/null
+++ b/tests/qapi-schema/flat-union-base-star.json
@@ -0,0 +1,12 @@
+# we require the base to be an existing struct
+{ 'enum': 'TestEnum',
+ 'data': [ 'value1', 'value2' ] }
+{ 'struct': 'TestTypeA',
+ 'data': { 'string': 'str' } }
+{ 'struct': 'TestTypeB',
+ 'data': { 'integer': 'int' } }
+{ 'union': 'TestUnion',
+ 'base': '**',
+ 'discriminator': 'enum1',
+ 'data': { 'value1': 'TestTypeA',
+ 'value2': 'TestTypeB' } }