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>
This commit is contained in:
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

@ -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

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' ] }