qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/25] Testing patches for 2018-08-16
@ 2018-08-16  8:36 Markus Armbruster
  2018-08-16  8:36 ` [Qemu-devel] [PULL 01/25] libqtest: Rename functions to send QMP messages Markus Armbruster
                   ` (25 more replies)
  0 siblings, 26 replies; 29+ messages in thread
From: Markus Armbruster @ 2018-08-16  8:36 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit c146b54c7fdbd926ee8fc4369699e3480d54f6fa:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-misc-2018-08-15' into staging (2018-08-15 20:20:34 +0100)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-tests-2018-08-16

for you to fetch changes up to f9e986d237881fda3ce599a89c26433531f5acbb:

  libqtest: Improve error reporting for bad read from QEMU (2018-08-16 08:43:53 +0200)

----------------------------------------------------------------
Testing patches for 2018-08-16

----------------------------------------------------------------
Eric Blake (2):
      libqtest: Document calling conventions
      tests/libqtest: Improve kill_qemu()

Markus Armbruster (23):
      libqtest: Rename functions to send QMP messages
      libqtest: Clean up how we read device_del messages
      libqtest: Clean up how we read the QMP greeting
      libqtest: Remove qtest_qmp_discard_response() & friends
      qobject: Replace qobject_from_jsonf() by qobject_from_jsonf_nofail()
      qobject: New qobject_from_vjsonf_nofail(), qdict_from_vjsonf_nofail()
      libqtest: Simplify qmp_fd_vsend() a bit
      test-qobject-input-visitor: Avoid format string ambiguity
      qobject: qobject_from_jsonv() is dangerous, hide it away
      tests: Pass literal format strings directly to qmp_FOO()
      tests: Clean up string interpolation into QMP input (simple cases)
      cpu-plug-test: Don't pass integers as strings to device_add
      tests: Clean up string interpolation around qtest_qmp_device_add()
      migration-test: Make wait_command() return the "return" member
      tests: New helper qtest_qmp_receive_success()
      migration-test: Make wait_command() cope with '%'
      migration-test: Clean up string interpolation into QMP, part 1
      migration-test: Clean up string interpolation into QMP, part 2
      migration-test: Clean up string interpolation into QMP, part 3
      libqtest: Enable compile-time format string checking
      libqtest: Replace qtest_startf() by qtest_initf()
      libqtest: Rename qtest_FOOv() to qtest_vFOO() for consistency
      libqtest: Improve error reporting for bad read from QEMU

 include/qapi/qmp/qjson.h           |  12 +-
 qobject/qjson.c                    |  89 +++++++++++----
 tests/ahci-test.c                  |  15 +--
 tests/boot-order-test.c            |  13 ++-
 tests/boot-serial-test.c           |  10 +-
 tests/cdrom-test.c                 |   6 +-
 tests/check-qjson.c                |  15 +--
 tests/cpu-plug-test.c              |   7 +-
 tests/drive_del-test.c             |   3 +
 tests/e1000e-test.c                |   6 +-
 tests/endianness-test.c            |  24 ++--
 tests/fdc-test.c                   |   4 +
 tests/ide-test.c                   |   9 +-
 tests/ipmi-bt-test.c               |   2 +-
 tests/ivshmem-test.c               |   8 +-
 tests/libqos/ahci.c                |   4 +-
 tests/libqos/pci-pc.c              |   9 +-
 tests/libqos/pci.c                 |   7 --
 tests/libqos/pci.h                 |   2 -
 tests/libqos/usb.c                 |  10 +-
 tests/libqos/usb.h                 |   2 +-
 tests/libqtest.c                   | 219 ++++++++++++++++++++-----------------
 tests/libqtest.h                   | 124 +++++++++++----------
 tests/m25p80-test.c                |   6 +-
 tests/m48t59-test.c                |   2 +-
 tests/machine-none-test.c          |   2 +-
 tests/migration-test.c             | 187 ++++++++++++++-----------------
 tests/numa-test.c                  |   4 +-
 tests/pnv-xscom-test.c             |   8 +-
 tests/prom-env-test.c              |  10 +-
 tests/qmp-test.c                   |  20 ++--
 tests/sdhci-test.c                 |   6 +-
 tests/tco-test.c                   |   6 +-
 tests/test-filter-mirror.c         |   6 +-
 tests/test-filter-redirector.c     |   8 +-
 tests/test-qga.c                   | 150 +++++++++++--------------
 tests/test-qobject-input-visitor.c |  19 ++--
 tests/tpm-util.c                   |  41 ++-----
 tests/usb-hcd-ehci-test.c          |   2 +-
 tests/usb-hcd-ohci-test.c          |   2 +-
 tests/usb-hcd-uhci-test.c          |   4 +-
 tests/usb-hcd-xhci-test.c          |  10 +-
 tests/vhost-user-test.c            |   6 +-
 tests/virtio-balloon-test.c        |   4 +-
 tests/virtio-blk-test.c            |  17 ++-
 tests/virtio-console-test.c        |  12 +-
 tests/virtio-net-test.c            |   3 +-
 tests/virtio-rng-test.c            |   3 +-
 tests/virtio-scsi-test.c           |   2 +-
 tests/virtio-serial-test.c         |   6 +-
 tests/vmgenid-test.c               |   6 +-
 51 files changed, 585 insertions(+), 567 deletions(-)

-- 
2.17.1

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2018-08-27  4:15 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-16  8:36 [Qemu-devel] [PULL 00/25] Testing patches for 2018-08-16 Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 01/25] libqtest: Rename functions to send QMP messages Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 02/25] libqtest: Clean up how we read device_del messages Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 03/25] libqtest: Clean up how we read the QMP greeting Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 04/25] libqtest: Remove qtest_qmp_discard_response() & friends Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 05/25] libqtest: Document calling conventions Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 06/25] qobject: Replace qobject_from_jsonf() by qobject_from_jsonf_nofail() Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 07/25] qobject: New qobject_from_vjsonf_nofail(), qdict_from_vjsonf_nofail() Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 08/25] libqtest: Simplify qmp_fd_vsend() a bit Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 09/25] test-qobject-input-visitor: Avoid format string ambiguity Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 10/25] qobject: qobject_from_jsonv() is dangerous, hide it away Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 11/25] tests: Pass literal format strings directly to qmp_FOO() Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 12/25] tests: Clean up string interpolation into QMP input (simple cases) Markus Armbruster
2018-08-24 22:41   ` Eric Blake
2018-08-27  4:15     ` Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 13/25] cpu-plug-test: Don't pass integers as strings to device_add Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 14/25] tests: Clean up string interpolation around qtest_qmp_device_add() Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 15/25] migration-test: Make wait_command() return the "return" member Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 16/25] tests: New helper qtest_qmp_receive_success() Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 17/25] migration-test: Make wait_command() cope with '%' Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 18/25] migration-test: Clean up string interpolation into QMP, part 1 Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 19/25] migration-test: Clean up string interpolation into QMP, part 2 Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 20/25] migration-test: Clean up string interpolation into QMP, part 3 Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 21/25] libqtest: Enable compile-time format string checking Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 22/25] libqtest: Replace qtest_startf() by qtest_initf() Markus Armbruster
2018-08-16  8:36 ` [Qemu-devel] [PULL 23/25] libqtest: Rename qtest_FOOv() to qtest_vFOO() for consistency Markus Armbruster
2018-08-16  8:37 ` [Qemu-devel] [PULL 24/25] tests/libqtest: Improve kill_qemu() Markus Armbruster
2018-08-16  8:37 ` [Qemu-devel] [PULL 25/25] libqtest: Improve error reporting for bad read from QEMU Markus Armbruster
2018-08-16  9:49 ` [Qemu-devel] [PULL 00/25] Testing patches for 2018-08-16 Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).