diff options
author | Eric Blake | 2015-12-02 06:20:58 +0100 |
---|---|---|
committer | Markus Armbruster | 2015-12-17 08:21:29 +0100 |
commit | 01cfbaa4c36ecd9f1c7bcbad50c92758e1d147c4 (patch) | |
tree | 331acd61966951feca3191ff1aade763056a2b49 /tests/qapi-schema/flat-union-clash-member.err | |
parent | qapi: Enforce (or whitelist) case conventions on qapi members (diff) | |
download | qemu-01cfbaa4c36ecd9f1c7bcbad50c92758e1d147c4.tar.gz qemu-01cfbaa4c36ecd9f1c7bcbad50c92758e1d147c4.tar.xz qemu-01cfbaa4c36ecd9f1c7bcbad50c92758e1d147c4.zip |
qapi: Move duplicate collision checks to schema check()
With the recent commit 'qapi: Detect collisions in C member
names', we have two different locations for detecting clashes -
one at parse time, and another at QAPISchema*.check() time.
Remove all of the ad hoc parser checks, and delete associated
code (for example, the global check_member_clash() method is
no longer needed).
Testing this showed that the test union-bad-branch wasn't adding
much: union-clash-branches also exposes the error message when
branches collide, and we've recently fixed things to avoid an
implicit collision with max. Likewise, the error for
enum-clash-member changes to report our new detection of
upper case in a value name, unless we modify the test to use
all lower case.
The wording of several error messages has changed, but the
change is generally an improvement rather than a regression.
No change to generated code.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1449033659-25497-15-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'tests/qapi-schema/flat-union-clash-member.err')
-rw-r--r-- | tests/qapi-schema/flat-union-clash-member.err | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qapi-schema/flat-union-clash-member.err b/tests/qapi-schema/flat-union-clash-member.err index 2f0397a8a9..2adf69755a 100644 --- a/tests/qapi-schema/flat-union-clash-member.err +++ b/tests/qapi-schema/flat-union-clash-member.err @@ -1 +1 @@ -tests/qapi-schema/flat-union-clash-member.json:11: Member name 'name' of branch 'value1' clashes with base 'Base' +tests/qapi-schema/flat-union-clash-member.json:11: 'name' (member of Branch1) collides with 'name' (member of Base) |