[PATCH v2 00/11] Validate and test qapi examples

Victor Toso posted 11 patches 7 months, 2 weeks ago
Only 10 patches received!
There is a newer version of this series
qapi/block-core.json         |  32 +++---
qapi/machine.json            |   2 +-
qapi/migration.json          |   6 +-
qapi/misc.json               |   2 +-
qapi/net.json                |   6 +-
qapi/rocker.json             |   3 +-
qapi/ui.json                 |   3 +-
scripts/qapi/dumpexamples.py | 204 +++++++++++++++++++++++++++++++++++
scripts/qapi/main.py         |   9 +-
tests/meson.build            |   2 +-
10 files changed, 239 insertions(+), 30 deletions(-)
create mode 100644 scripts/qapi/dumpexamples.py
[PATCH v2 00/11] Validate and test qapi examples
Posted by Victor Toso 7 months, 2 weeks ago
Hi,

v1: https://lists.gnu.org/archive/html/qemu-devel/2023-09/msg00853.html

Changes:
- Fixed running the generator with tests (Daniel). Added a flag for the
  generator, set in tests/meson.build (Philippe).
- Moved the script to the end of the series, to avoid git bisect issues
  (Daniel)
- Added a proper assert() to the generator, making it fail if any
  documentation error was found instead of just printing to the stderr
  and carry on. (Daniel)
- Fixed the 3 other warnings the generator was showing, we are 100% free
  of warnings (in my machine)

Cheers,
Victor

Victor Toso (11):
  qapi: fix example of get-win32-socket command
  qapi: fix example of dumpdtb command
  qapi: fix example of cancel-vcpu-dirty-limit command
  qapi: fix example of set-vcpu-dirty-limit command
  qapi: fix example of calc-dirty-rate command
  qapi: fix example of NETDEV_STREAM_CONNECTED event
  qapi: fix example of query-rocker-of-dpa-flows command
  qapi: fix example of query-spice command
  qapi: fix example of query-blockstats command
  qapi: meson: add test flag to allow skip generators
  qapi: scripts: add a generator for qapi's examples

 qapi/block-core.json         |  32 +++---
 qapi/machine.json            |   2 +-
 qapi/migration.json          |   6 +-
 qapi/misc.json               |   2 +-
 qapi/net.json                |   6 +-
 qapi/rocker.json             |   3 +-
 qapi/ui.json                 |   3 +-
 scripts/qapi/dumpexamples.py | 204 +++++++++++++++++++++++++++++++++++
 scripts/qapi/main.py         |   9 +-
 tests/meson.build            |   2 +-
 10 files changed, 239 insertions(+), 30 deletions(-)
 create mode 100644 scripts/qapi/dumpexamples.py

-- 
2.41.0
Re: [PATCH v2 00/11] Validate and test qapi examples
Posted by Markus Armbruster 7 months, 2 weeks ago
PATCH 01-06,09:
Reviewed-by: Markus Armbruster <armbru@redhat.com>