]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/qapi-schema: Belatedly update comment on alternate clash
authorMarkus Armbruster <armbru@redhat.com>
Tue, 23 Mar 2021 09:40:01 +0000 (10:40 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Tue, 23 Mar 2021 20:39:12 +0000 (21:39 +0100)
Commit 0426d53c65 "qapi: Simplify visiting of alternate types"
eliminated the implicit alternate enum, but neglected to update a
comment about it in a test.  Do that now.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210323094025.3569441-5-armbru@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
tests/qapi-schema/alternate-clash.err
tests/qapi-schema/alternate-clash.json

index f58b977f7b25fc7a3c3147379ea0f5095b599fd7..0fe02f2c996dcf22e23ea695413be024f87526c4 100644 (file)
@@ -1,2 +1,2 @@
 alternate-clash.json: In alternate 'Alt1':
-alternate-clash.json:7: branch 'a_b' collides with branch 'a-b'
+alternate-clash.json:4: branch 'a_b' collides with branch 'a-b'
index 9a59b88ced0830854e0b277e6594faabc084f706..039c4be65811e55587092e2f23fd5a835575cde0 100644 (file)
@@ -1,8 +1,5 @@
 # Alternate branch name collision
 # Reject an alternate that would result in a collision in generated C
-# names (this would try to generate two enum values 'ALT1_KIND_A_B').
-# TODO: In the future, if alternates are simplified to not generate
-# the implicit Alt1Kind enum, we would still have a collision with the
-# resulting C union trying to have two members named 'a_b'.
+# names (this would try to generate two union members named 'a_b').
 { 'alternate': 'Alt1',
   'data': { 'a-b': 'bool', 'a_b': 'int' } }