[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 11/15] qapi: Catch and reject flat union branch o
From: |
Markus Armbruster |
Subject: |
[Qemu-devel] [PATCH v2 11/15] qapi: Catch and reject flat union branch of array type |
Date: |
Tue, 16 Jun 2015 16:40:54 +0200 |
Signed-off-by: Markus Armbruster <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
---
scripts/qapi.py | 2 +-
tests/qapi-schema/flat-union-array-branch.err | 11 +----------
2 files changed, 2 insertions(+), 11 deletions(-)
diff --git a/scripts/qapi.py b/scripts/qapi.py
index 8f23267..06d7fc2 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -580,7 +580,7 @@ def check_union(expr, expr_info):
# Each value must name a known type; furthermore, in flat unions,
# branches must be a struct with no overlapping member names
check_type(expr_info, "Member '%s' of union '%s'" % (key, name),
- value, allow_array=True, allow_metas=allow_metas)
+ value, allow_array=not base, allow_metas=allow_metas)
if base:
branch_struct = find_struct(value)
assert branch_struct
diff --git a/tests/qapi-schema/flat-union-array-branch.err
b/tests/qapi-schema/flat-union-array-branch.err
index b45ef43..8ea91ea 100644
--- a/tests/qapi-schema/flat-union-array-branch.err
+++ b/tests/qapi-schema/flat-union-array-branch.err
@@ -1,10 +1 @@
-Traceback (most recent call last):
- File "tests/qapi-schema/test-qapi.py", line 19, in <module>
- exprs = parse_schema(sys.argv[1])
- File "scripts/qapi.py", line 760, in parse_schema
- return check_exprs(schema.exprs)
- File "scripts/qapi.py", line 743, in check_exprs
- check_union(expr, info)
- File "scripts/qapi.py", line 586, in check_union
- assert branch_struct
-AssertionError
+tests/qapi-schema/flat-union-array-branch.json:8: Member 'value1' of union
'TestUnion' cannot be an array
--
1.9.3
- [Qemu-devel] [PATCH v2 09/15] qapi: Better separate the different kinds of helpers, (continued)
- [Qemu-devel] [PATCH v2 09/15] qapi: Better separate the different kinds of helpers, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 01/15] MAINTAINERS: Fix up QAPI and QAPI schema file patterns, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 08/15] qapi: Move exprs checking from parse_schema() to check_exprs(), Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 13/15] qapi-types: Drop unused members parameters, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 07/15] qapi: Fix to reject stray 't', 'f' and 'n', Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 06/15] qapi: Simplify inclusion cycle detection, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 02/15] qapi: Drop bogus command from docs, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 04/15] qapi: Improve a couple of confusing variable names, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 14/15] qapi-types: Split generate_fwd_builtin() off generate_fwd_struct(), Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 11/15] qapi: Catch and reject flat union branch of array type,
Markus Armbruster <=
- [Qemu-devel] [PATCH v2 15/15] qapi-types: Bury code dead since commit 6b5abc7, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 10/15] tests/qapi-schema: New flat union array branch test case, Markus Armbruster, 2015/06/16
- [Qemu-devel] [PATCH v2 03/15] qapi: Eliminate superfluous QAPISchema attribute input_dir, Markus Armbruster, 2015/06/16