tests/qapi-schema: Cover two more syntax errors

Syntax error coverage should now be complete.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
stable-2.5
Markus Armbruster 2015-08-31 15:47:55 +02:00
parent 65fbe12545
commit 91f9816da4
9 changed files with 9 additions and 0 deletions

View File

@ -237,6 +237,7 @@ check-qapi-schema-y := $(addprefix tests/qapi-schema/, \
missing-colon.json missing-comma-list.json missing-comma-object.json \
nested-struct-data.json non-objects.json \
qapi-schema-test.json quoted-structural-chars.json \
leading-comma-list.json leading-comma-object.json \
trailing-comma-list.json trailing-comma-object.json \
unclosed-list.json unclosed-object.json unclosed-string.json \
duplicate-key.json union-invalid-base.json union-bad-branch.json \

View File

@ -0,0 +1 @@
tests/qapi-schema/leading-comma-list.json:2:13: Expected "{", "[", "]", string, boolean or "null"

View File

@ -0,0 +1 @@
1

View File

@ -0,0 +1,2 @@
{ 'enum': 'Status',
'data': [ , 'good', 'bad', 'ugly' ] }

View File

@ -0,0 +1 @@
tests/qapi-schema/leading-comma-object.json:1:3: Expected string or "}"

View File

@ -0,0 +1 @@
1

View File

@ -0,0 +1,2 @@
{ , 'enum': 'Status',
'data': [ 'good', 'bad', 'ugly' ] }