summaryrefslogtreecommitdiffstats
path: root/qemu/tests/qapi-schema/flat-union-base-any.json
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/qapi-schema/flat-union-base-any.json')
-rw-r--r--qemu/tests/qapi-schema/flat-union-base-any.json12
1 files changed, 0 insertions, 12 deletions
diff --git a/qemu/tests/qapi-schema/flat-union-base-any.json b/qemu/tests/qapi-schema/flat-union-base-any.json
deleted file mode 100644
index fe66b713e..000000000
--- a/qemu/tests/qapi-schema/flat-union-base-any.json
+++ /dev/null
@@ -1,12 +0,0 @@
-# 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': 'any',
- 'discriminator': 'enum1',
- 'data': { 'value1': 'TestTypeA',
- 'value2': 'TestTypeB' } }