On 12/14/21 11:33 PM, Thomas Huth wrote:
Hi!
The following changes since commit 76b56fdfc9fa43ec6e5986aee33f108c6c6a511e:
Merge tag 'block-pull-request' of https://gitlab.com/stefanha/qemu into
staging (2021-12-14 12:46:18 -0800)
are available in the Git repository at:
https://gitlab.com/thuth/qemu.git tags/pull-request-2021-12-15
for you to fetch changes up to 7876cba8fc0cab9a4c803a30f427d4b20b95a868:
gitlab-ci: Test compilation on Windows with MSYS2 (2021-12-15 08:08:59 +0100)
----------------------------------------------------------------
* Add virtio-net failover test
* Make qtests a little bit more flexible with regards to reduced configs
* Move libssh setup from configure to meson.build
* Run device-crash-test in CI
* Add jobs for NetBSD and OpenBSD to the CI
* Test compilation with MSYS2 in the gitlab-ci, too
* Add new virtio-iommu test
----------------------------------------------------------------
Eric Auger (4):
virtio-iommu: Remove set_config callback
virtio-iommu: Fix endianness in get_config
virtio-iommu: Fix the domain_range end
tests: qtest: Add virtio-iommu test
Laurent Vivier (4):
qtest/libqos: add a function to initialize secondary PCI buses
tests/qtest: add some tests for virtio-net failover
tests/libqtest: add some virtio-net failover migration cancelling tests
tests/libqtest: add a migration test with two couples of failover devices
Thomas Huth (8):
tests/qtest: Run the PPC 32-bit tests with the 64-bit target binary, too
tests/qtest: Fence the tests that need xlnx-zcu102 with
CONFIG_XLNX_ZYNQMP_ARM
tests/qtest: Add a function that gets a list with available machine types
tests/qtest: Add a function to check whether a machine is available
Move the libssh setup from configure to meson.build
gitlab-ci.d/buildtest: Add jobs that run the device-crash-test
gitlab-ci: Add cirrus-ci based tests for NetBSD and OpenBSD
gitlab-ci: Test compilation on Windows with MSYS2
.gitlab-ci.d/buildtest.yml | 23 +
.gitlab-ci.d/cirrus.yml | 35 +
.gitlab-ci.d/cirrus/kvm-build.yml | 31 +
.gitlab-ci.d/qemu-project.yml | 1 +
.gitlab-ci.d/windows.yml | 98 +++
configure | 27 -
hw/virtio/trace-events | 3 +-
hw/virtio/virtio-iommu.c | 42 +-
include/hw/pci/pci_bridge.h | 8 +
meson.build | 13 +-
meson_options.txt | 2 +
scripts/meson-buildoptions.sh | 3 +
tests/qtest/boot-serial-test.c | 3 +-
tests/qtest/cdrom-test.c | 8 +-
tests/qtest/libqos/libqtest.h | 8 +
tests/qtest/libqos/meson.build | 1 +
tests/qtest/libqos/pci.c | 119 ++++
tests/qtest/libqos/pci.h | 1 +
tests/qtest/libqos/virtio-iommu.c | 126 ++++
tests/qtest/libqos/virtio-iommu.h | 40 ++
tests/qtest/libqtest.c | 79 ++-
tests/qtest/meson.build | 9 +-
tests/qtest/prom-env-test.c | 8 +-
tests/qtest/virtio-iommu-test.c | 326 +++++++++
tests/qtest/virtio-net-failover.c | 1352 +++++++++++++++++++++++++++++++++++++
25 files changed, 2290 insertions(+), 76 deletions(-)
create mode 100644 .gitlab-ci.d/cirrus/kvm-build.yml
create mode 100644 .gitlab-ci.d/windows.yml
create mode 100644 tests/qtest/libqos/virtio-iommu.c
create mode 100644 tests/qtest/libqos/virtio-iommu.h
create mode 100644 tests/qtest/virtio-iommu-test.c
create mode 100644 tests/qtest/virtio-net-failover.c
Applied, thanks.
r~