aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/reserved-member-u.json
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2021-03-23 10:40:03 +0100
committerMarkus Armbruster <armbru@redhat.com>2021-03-23 22:29:19 +0100
commit73c40b07c6fffcb2725f4c9d3f361967e39aef97 (patch)
tree020e488a0289b526abf55cd66526fe341c22e290 /tests/qapi-schema/reserved-member-u.json
parent1444989a3a4e8399e366ceecf4ed5bbd2d83c727 (diff)
tests/qapi-schema: Tweak to demonstrate buggy member name check
Member name 'u' and names starting with 'has-' or 'has_' are reserved for the generator. check_type() enforces this, covered by tests reserved-member-u and reserved-member-has. These tests neglect to cover optional members, where the name starts with '*'. Tweak reserved-member-u to fix that. Test reserved-member-has still covers non-optional members. This demonstrates the reserved member name check is broken for optional members. The next commit will fix it. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20210323094025.3569441-7-armbru@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> [Commit message improved slightly]
Diffstat (limited to 'tests/qapi-schema/reserved-member-u.json')
-rw-r--r--tests/qapi-schema/reserved-member-u.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qapi-schema/reserved-member-u.json b/tests/qapi-schema/reserved-member-u.json
index 1eaf0f301c..15005abb09 100644
--- a/tests/qapi-schema/reserved-member-u.json
+++ b/tests/qapi-schema/reserved-member-u.json
@@ -4,4 +4,5 @@
# This is true even for non-unions, because it is possible to convert a
# struct to flat union while remaining backwards compatible in QMP.
# TODO - we could munge the member name to 'q_u' to avoid the collision
-{ 'struct': 'Oops', 'data': { 'u': 'str' } }
+# BUG: not rejected
+{ 'struct': 'Oops', 'data': { '*u': 'str' } }