diff options
author | Markus Armbruster <armbru@redhat.com> | 2021-03-23 10:40:11 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2021-03-23 22:31:05 +0100 |
commit | 3e6c8a633113fb6a60369c40cf2061de50727bf6 (patch) | |
tree | b04ba3ff47afa8f1559a3774add4dd299a5232bf /tests/qapi-schema/meson.build | |
parent | d4f4cae8de19d2bdfcf09cdc4676e9b99857dcf2 (diff) | |
download | qemu-3e6c8a633113fb6a60369c40cf2061de50727bf6.zip qemu-3e6c8a633113fb6a60369c40cf2061de50727bf6.tar.gz qemu-3e6c8a633113fb6a60369c40cf2061de50727bf6.tar.bz2 |
qapi: Enforce type naming rules
Type names should be CamelCase. Enforce this. The only offenders are
in tests/. Fix them. Add test type-case to cover the new error.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210323094025.3569441-15-armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
[Regexp simplified, new test made more robust]
Diffstat (limited to 'tests/qapi-schema/meson.build')
-rw-r--r-- | tests/qapi-schema/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qapi-schema/meson.build b/tests/qapi-schema/meson.build index d5fa035..ba11cb7 100644 --- a/tests/qapi-schema/meson.build +++ b/tests/qapi-schema/meson.build @@ -180,6 +180,7 @@ schemas = [ 'trailing-comma-list.json', 'trailing-comma-object.json', 'type-bypass-bad-gen.json', + 'type-case.json', 'unclosed-list.json', 'unclosed-object.json', 'unclosed-string.json', |