aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/enum-member-case.json
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2017-03-15 13:56:55 +0100
committerMarkus Armbruster <armbru@redhat.com>2017-03-16 07:13:02 +0100
commit2cfbae3c423ecd13a7722ac7a7dca7ec4168e2ff (patch)
tree14fcbec48e3550368f0251b93aa95a0e62ec6797 /tests/qapi-schema/enum-member-case.json
parent1554a8fae984cad4704fb94a8cef3c9b42ef6185 (diff)
downloadqemu-2cfbae3c423ecd13a7722ac7a7dca7ec4168e2ff.zip
qemu-2cfbae3c423ecd13a7722ac7a7dca7ec4168e2ff.tar.gz
qemu-2cfbae3c423ecd13a7722ac7a7dca7ec4168e2ff.tar.bz2
qapi: Have each QAPI schema declare its name rule violations
qapi.py has a hardcoded white-list of type names that may violate the rule on use of upper and lower case. Add a new pragma directive 'name-case-whitelist', and use it to replace the hard-coded white-list. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1489582656-31133-7-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tests/qapi-schema/enum-member-case.json')
-rw-r--r--tests/qapi-schema/enum-member-case.json1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qapi-schema/enum-member-case.json b/tests/qapi-schema/enum-member-case.json
index 2096b35..f8af3e4 100644
--- a/tests/qapi-schema/enum-member-case.json
+++ b/tests/qapi-schema/enum-member-case.json
@@ -1,3 +1,4 @@
# Member names should be 'lower-case' unless the enum is whitelisted
+{ 'pragma': { 'name-case-whitelist': [ 'UuidInfo' ] } }
{ 'enum': 'UuidInfo', 'data': [ 'Value' ] } # UuidInfo is whitelisted
{ 'enum': 'NoWayThisWillGetWhitelisted', 'data': [ 'Value' ] }