mbox series

[0/3] qapi-schema: support alternates with array type

Message ID 20220321164243.200569-1-pbonzini@redhat.com
Headers show
Series qapi-schema: support alternates with array type | expand

Message

Paolo Bonzini March 21, 2022, 4:42 p.m. UTC
As suggested in the review of the statistics subsystem.

Paolo Bonzini (3):
  qapi-schema: support alternates with array type
  qapi-schema: test: add a qapi-schema-test for array alternates
  qapi-schema: test: add a unit test for parsing array alternates

 scripts/qapi/expr.py                          |  2 +-
 scripts/qapi/schema.py                        |  4 ++
 tests/qapi-schema/alternate-array.err         |  2 -
 tests/qapi-schema/alternate-array.json        |  2 -
 tests/qapi-schema/alternate-array.out         | 18 ++++++++
 .../qapi-schema/alternate-conflict-lists.err  |  2 +
 .../qapi-schema/alternate-conflict-lists.json |  6 +++
 .../qapi-schema/alternate-conflict-lists.out  |  0
 tests/qapi-schema/meson.build                 |  1 +
 tests/qapi-schema/qapi-schema-test.json       |  1 +
 tests/qapi-schema/qapi-schema-test.out        |  4 ++
 tests/unit/test-qobject-input-visitor.c       | 43 +++++++++++++++++++
 12 files changed, 79 insertions(+), 5 deletions(-)
 create mode 100644 tests/qapi-schema/alternate-conflict-lists.err
 create mode 100644 tests/qapi-schema/alternate-conflict-lists.json
 create mode 100644 tests/qapi-schema/alternate-conflict-lists.out

Comments

Markus Armbruster April 4, 2022, 12:13 p.m. UTC | #1
Paolo Bonzini <pbonzini@redhat.com> writes:

> As suggested in the review of the statistics subsystem.

Queued for 7.1, thanks!
Paolo Bonzini April 18, 2022, 2:50 p.m. UTC | #2
On 4/4/22 14:13, Markus Armbruster wrote:
> Paolo Bonzini <pbonzini@redhat.com> writes:
> 
>> As suggested in the review of the statistics subsystem.
> 
> Queued for 7.1, thanks!

Thanks, I will follow up with the stats patches after these land.

Paolo