diff options
| author | Eric Blake | 2015-10-13 06:22:23 +0200 |
|---|---|---|
| committer | Markus Armbruster | 2015-10-15 08:39:07 +0200 |
| commit | baabb84c5b27115b979d864cb2af4d63b823983f (patch) | |
| tree | 76a36c5356c2a432668cecbea0a2b7b3fb876371 /tests/qapi-schema | |
| parent | qapi: Prepare for errors during check() (diff) | |
| download | qemu-baabb84c5b27115b979d864cb2af4d63b823983f.tar.gz qemu-baabb84c5b27115b979d864cb2af4d63b823983f.tar.xz qemu-baabb84c5b27115b979d864cb2af4d63b823983f.zip | |
qapi: Drop redundant alternate-good test
The alternate-good.json test was already covered by
qapi-schema-test.json. As future commits will be tweaking
how alternates are laid out, removing the duplicate test now
reduces churn.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1444710158-8723-4-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'tests/qapi-schema')
| -rw-r--r-- | tests/qapi-schema/alternate-good.err | 0 | ||||
| -rw-r--r-- | tests/qapi-schema/alternate-good.exit | 1 | ||||
| -rw-r--r-- | tests/qapi-schema/alternate-good.json | 9 | ||||
| -rw-r--r-- | tests/qapi-schema/alternate-good.out | 10 |
4 files changed, 0 insertions, 20 deletions
diff --git a/tests/qapi-schema/alternate-good.err b/tests/qapi-schema/alternate-good.err deleted file mode 100644 index e69de29bb2..0000000000 --- a/tests/qapi-schema/alternate-good.err +++ /dev/null diff --git a/tests/qapi-schema/alternate-good.exit b/tests/qapi-schema/alternate-good.exit deleted file mode 100644 index 573541ac97..0000000000 --- a/tests/qapi-schema/alternate-good.exit +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/tests/qapi-schema/alternate-good.json b/tests/qapi-schema/alternate-good.json deleted file mode 100644 index 33717704ce..0000000000 --- a/tests/qapi-schema/alternate-good.json +++ /dev/null @@ -1,9 +0,0 @@ -# Working example of alternate -{ 'struct': 'Data', - 'data': { '*number': 'int', '*name': 'str' } } -{ 'enum': 'Enum', - 'data': [ 'hello', 'world' ] } -{ 'alternate': 'Alt', - 'data': { 'value': 'int', - 'string': 'Enum', - 'struct': 'Data' } } diff --git a/tests/qapi-schema/alternate-good.out b/tests/qapi-schema/alternate-good.out deleted file mode 100644 index 65af7278f4..0000000000 --- a/tests/qapi-schema/alternate-good.out +++ /dev/null @@ -1,10 +0,0 @@ -object :empty -alternate Alt - case value: int - case string: Enum - case struct: Data -enum AltKind ['value', 'string', 'struct'] -object Data - member number: int optional=True - member name: str optional=True -enum Enum ['hello', 'world'] |
