diff options
| author | Eric Blake | 2015-05-04 17:05:01 +0200 |
|---|---|---|
| committer | Markus Armbruster | 2015-05-05 18:39:00 +0200 |
| commit | cb17f79eef0d161e81ac457e4c1f124405be2a18 (patch) | |
| tree | 26a04f98d0972a8cd70c3b27e488b6d3f83ec25e /tests/qapi-schema/qapi-schema-test.json | |
| parent | qapi: Simplify builtin type handling (diff) | |
| download | qemu-cb17f79eef0d161e81ac457e4c1f124405be2a18.tar.gz qemu-cb17f79eef0d161e81ac457e4c1f124405be2a18.tar.xz qemu-cb17f79eef0d161e81ac457e4c1f124405be2a18.zip | |
qapi: Fix generation of 'size' builtin type
We were missing the 'size' builtin type (which means that QAPI using
[ 'size' ] would fail to compile).
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'tests/qapi-schema/qapi-schema-test.json')
| -rw-r--r-- | tests/qapi-schema/qapi-schema-test.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qapi-schema/qapi-schema-test.json b/tests/qapi-schema/qapi-schema-test.json index d43b5fd2e9..84f0f07637 100644 --- a/tests/qapi-schema/qapi-schema-test.json +++ b/tests/qapi-schema/qapi-schema-test.json @@ -74,7 +74,8 @@ 'u64': ['uint64'], 'number': ['number'], 'boolean': ['bool'], - 'string': ['str'] } } + 'string': ['str'], + 'sizes': ['size'] } } # testing commands { 'command': 'user_def_cmd', 'data': {} } |
