From: Thomas Huth <thuth@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/18] qtest patches
Date: Wed, 14 Feb 2018 12:20:16 +0100 [thread overview]
Message-ID: <1518607234-17739-1-git-send-email-thuth@redhat.com> (raw)
The following changes since commit bec9c64ef7be8063f1192608b83877bc5c9ea217:
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2018-02-13 18:24:08 +0000)
are available in the git repository at:
https://github.com/huth/qemu.git tags/pull-request-2018-02-14
for you to fetch changes up to 02f4fbecb93da2125d22d3f0b62c6ee44aea84d4:
tests/m48t59: Use the m48t59 test on ppc, too (2018-02-14 11:43:42 +0100)
----------------------------------------------------------------
Various improvements to the qtest checks:
- Clean-ups by Eric Blake with regards to the global_qtest variable
- Some more test cases for the boot-serial tester
- Re-activation of the m48t59-test
----------------------------------------------------------------
Eric Blake (10):
libqtest: Use qemu_strtoul()
libqos: Track QTestState with QPCIBus
libqos: Use explicit QTestState for fw_cfg operations
libqos: Use explicit QTestState for rtas operations
libqos: Use explicit QTestState for i2c operations
libqos: Use explicit QTestState for ahci operations
libqos: Use explicit QTestState for remaining libqos operations
qmp-test: Drop dependence on global_qtest
tests/boot-sector: Drop dependence on global_qtest
wdt_ib700-test: Drop dependence on global_qtest
Markus Armbruster (1):
tests: Clean up wait for event
Thomas Huth (6):
tests/boot-serial: Enable the boot-serial test on SPARC machines, too
tests/boot-serial: Add tests for PowerPC Mac machines
tests/m48t59: Fix and re-enable the test for sparc
tests/m48t59: Make the test independent of global_qtest
tests/Makefile: Derive check-qtest-ppc64-y from check-qtest-ppc-y
tests/m48t59: Use the m48t59 test on ppc, too
Wei Huang (1):
tests/boot-serial-test: Add support for the aarch64 virt machine
tests/Makefile.include | 22 ++++----
tests/ahci-test.c | 3 +-
tests/bios-tables-test.c | 2 +-
tests/boot-order-test.c | 8 +--
tests/boot-sector.c | 8 +--
tests/boot-sector.h | 6 ++-
tests/boot-serial-test.c | 16 ++++++
tests/ds1338-test.c | 6 +--
tests/e1000e-test.c | 8 +--
tests/fw_cfg-test.c | 13 ++---
tests/i440fx-test.c | 2 +-
tests/ide-test.c | 4 +-
tests/ivshmem-test.c | 1 +
tests/libqos/ahci.c | 49 +++++++++---------
tests/libqos/ahci.h | 2 +-
tests/libqos/fw_cfg.c | 14 ++---
tests/libqos/fw_cfg.h | 10 ++--
tests/libqos/i2c-imx.c | 67 ++++++++++++------------
tests/libqos/i2c-omap.c | 45 ++++++++--------
tests/libqos/i2c.h | 7 ++-
tests/libqos/libqos-pc.c | 2 +-
tests/libqos/libqos.c | 40 +++++---------
tests/libqos/libqos.h | 4 +-
tests/libqos/malloc-pc.c | 8 +--
tests/libqos/malloc-pc.h | 4 +-
tests/libqos/malloc-spapr.c | 4 +-
tests/libqos/malloc-spapr.h | 2 +-
tests/libqos/malloc.h | 1 +
tests/libqos/pci-pc.c | 13 ++---
tests/libqos/pci-pc.h | 2 +-
tests/libqos/pci-spapr.c | 25 +++++----
tests/libqos/pci-spapr.h | 2 +-
tests/libqos/pci.h | 1 +
tests/libqos/rtas.c | 36 +++++++------
tests/libqos/rtas.h | 12 +++--
tests/libqtest.c | 19 ++++---
tests/m48t59-test.c | 123 ++++++++++++++++++++++++--------------------
tests/megasas-test.c | 5 +-
tests/pxe-test.c | 2 +-
tests/q35-test.c | 4 +-
tests/qmp-test.c | 35 +++++++------
tests/rtas-test.c | 3 +-
tests/rtl8139-test.c | 5 +-
tests/sdhci-test.c | 2 +-
tests/tco-test.c | 5 +-
tests/tmp105-test.c | 6 +--
tests/usb-hcd-ehci-test.c | 2 +-
tests/usb-hcd-uhci-test.c | 1 +
tests/vhost-user-test.c | 4 +-
tests/virtio-9p-test.c | 1 +
tests/virtio-blk-test.c | 1 +
tests/virtio-net-test.c | 15 +++---
tests/virtio-scsi-test.c | 16 +++---
tests/vmgenid-test.c | 2 +-
tests/wdt_ib700-test.c | 90 ++++++++++++++------------------
55 files changed, 416 insertions(+), 374 deletions(-)
next reply other threads:[~2018-02-14 11:20 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-14 11:20 Thomas Huth [this message]
2018-02-14 11:20 ` [Qemu-devel] [PULL 01/18] tests: Clean up wait for event Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 02/18] libqtest: Use qemu_strtoul() Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 03/18] libqos: Track QTestState with QPCIBus Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 04/18] libqos: Use explicit QTestState for fw_cfg operations Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 05/18] libqos: Use explicit QTestState for rtas operations Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 06/18] libqos: Use explicit QTestState for i2c operations Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 07/18] libqos: Use explicit QTestState for ahci operations Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 08/18] libqos: Use explicit QTestState for remaining libqos operations Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 09/18] qmp-test: Drop dependence on global_qtest Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 10/18] tests/boot-sector: " Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 11/18] wdt_ib700-test: " Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 12/18] tests/boot-serial: Enable the boot-serial test on SPARC machines, too Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 13/18] tests/boot-serial: Add tests for PowerPC Mac machines Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 14/18] tests/boot-serial-test: Add support for the aarch64 virt machine Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 15/18] tests/m48t59: Fix and re-enable the test for sparc Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 16/18] tests/m48t59: Make the test independent of global_qtest Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 17/18] tests/Makefile: Derive check-qtest-ppc64-y from check-qtest-ppc-y Thomas Huth
2018-02-14 11:20 ` [Qemu-devel] [PULL 18/18] tests/m48t59: Use the m48t59 test on ppc, too Thomas Huth
2018-02-15 14:15 ` [Qemu-devel] [PULL 00/18] qtest patches Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1518607234-17739-1-git-send-email-thuth@redhat.com \
--to=thuth@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).