[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 00/29] testing/next: functional tests, qtest clocks, vm and ke
From: |
Alex Bennée |
Subject: |
[PATCH v3 00/29] testing/next: functional tests, qtest clocks, vm and keymaps (pre-PR) |
Date: |
Tue, 7 Jan 2025 16:51:38 +0000 |
There are number of parts to this series.
The first is the updated images for all the guests that didn't make it
into 9.2. There are also some new functional tests for virtio-gpu
along with some other clean-ups.
The qtest patches focus on ensuring things calling clock_step and
clock_set actually pay attention to return values. The virtio tests
needed a little little re-jigging as they don't need timeout
loops at all (v2).
We bump libvirt-ci so we can move the riscv64 cross container to
testing/trixie which will hopefully make the image less prone to sid
breakages.
Finally we make a few tweaks to tests/vm which were helpful when
chasing the keymap issue. I still think there is a race condition in
there somewhere as I can't reliably build the FreeBSD VMs from
scratch.
The pc-bios dependency fixup I think addresses the failure but I'm a
little unsure about the meason stuff.
I'll send a PR for everything that is reviewed later this week.
For v2
- add test/vm and lcitool updates
- don't move clock_step, remove them for virtio tests
For v3
- review comments and checkpatch fixes
- MAINTAINERS updates
- add zstd uncompress function and use it
The following still need review:
pc-bios: ensure keymaps dependencies set vnc tests
tests/vm: allow interactive login as root
tests/vm: partially un-tabify help output
tests/docker: move riscv64 cross container from sid to trixie
tests/functional: extend test_aarch64_virt with vulkan test
tests/functional: add zstd support to uncompress utility
tests/qtest: remove clock_steps from virtio tests
Alex.
Alex Bennée (25):
tests/functional: update the arm tuxrun tests
tests/functional: update the i386 tuxrun tests
tests/functional: add a m68k tuxrun tests
tests/functional: update the mips32 tuxrun tests
tests/functional: update the mips32el tuxrun tests
tests/functional: update the mips64 tuxrun tests
tests/functional: update the mips64el tuxrun tests
tests/functional: update the ppc32 tuxrun tests
tests/functional: update the ppc64 tuxrun tests
tests/functional: update the riscv32 tuxrun tests
tests/functional: update the riscv64 tuxrun tests
tests/functional: update the s390x tuxrun tests
tests/functional: update the sparc64 tuxrun tests
tests/functional: update the x86_64 tuxrun tests
tests/qtest: remove clock_steps from virtio tests
system/qtest: properly feedback results of clock_[step|set]
tests/functional: remove hacky sleep from the tests
tests/functional: add zstd support to uncompress utility
tests/functional: extend test_aarch64_virt with vulkan test
tests/lcitool: bump to latest version of libvirt-ci
tests/docker: move riscv64 cross container from sid to trixie
tests/vm: fix build_path based path
tests/vm: partially un-tabify help output
tests/vm: allow interactive login as root
pc-bios: ensure keymaps dependencies set vnc tests
Daniel P. Berrangé (1):
tests/lcitool: remove temp workaround for debian mips64el
Philippe Mathieu-Daudé (1):
dockerfiles: Remove 'MAINTAINER' entry in debian-tricore-cross.docker
Pierrick Bouvier (1):
tests/functional/aarch64: add tests for FEAT_RME
Wainer dos Santos Moschetta (1):
MAINTAINERS: Remove myself from reviewers
MAINTAINERS | 3 +-
system/qtest.c | 23 ++--
tests/qtest/libqos/virtio.c | 4 -
.gitlab-ci.d/cirrus/freebsd-14.vars | 2 +-
pc-bios/keymaps/meson.build | 17 ++-
.../dockerfiles/debian-mips64el-cross.docker | 9 ++
.../dockerfiles/debian-riscv64-cross.docker | 4 +-
.../dockerfiles/debian-tricore-cross.docker | 2 -
tests/functional/meson.build | 5 +
tests/functional/qemu_test/uncompress.py | 17 +++
tests/functional/test_aarch64_rme_sbsaref.py | 69 +++++++++++
tests/functional/test_aarch64_rme_virt.py | 98 +++++++++++++++
tests/functional/test_aarch64_virt.py | 114 +++++++++++++++---
tests/functional/test_arm_tuxrun.py | 28 ++---
tests/functional/test_i386_tuxrun.py | 8 +-
tests/functional/test_m68k_tuxrun.py | 34 ++++++
tests/functional/test_mips64_tuxrun.py | 8 +-
tests/functional/test_mips64el_tuxrun.py | 8 +-
tests/functional/test_mips_tuxrun.py | 8 +-
tests/functional/test_mipsel_tuxrun.py | 8 +-
tests/functional/test_ppc64_tuxrun.py | 16 +--
tests/functional/test_ppc_tuxrun.py | 8 +-
tests/functional/test_riscv32_tuxrun.py | 8 +-
tests/functional/test_riscv64_tuxrun.py | 16 +--
tests/functional/test_s390x_tuxrun.py | 8 +-
tests/functional/test_sparc64_tuxrun.py | 8 +-
tests/functional/test_x86_64_tuxrun.py | 8 +-
tests/lcitool/libvirt-ci | 2 +-
tests/lcitool/mappings.yml | 29 -----
tests/lcitool/refresh | 4 +-
tests/qtest/meson.build | 2 +-
tests/vm/Makefile.include | 29 ++---
tests/vm/basevm.py | 12 +-
tests/vm/generated/freebsd.json | 2 +-
34 files changed, 453 insertions(+), 168 deletions(-)
create mode 100755 tests/functional/test_aarch64_rme_sbsaref.py
create mode 100755 tests/functional/test_aarch64_rme_virt.py
create mode 100644 tests/functional/test_m68k_tuxrun.py
--
2.39.5
- [PATCH v3 00/29] testing/next: functional tests, qtest clocks, vm and keymaps (pre-PR),
Alex Bennée <=
- [PATCH v3 02/29] tests/functional: update the i386 tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 01/29] tests/functional: update the arm tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 03/29] tests/functional: add a m68k tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 04/29] tests/functional: update the mips32 tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 05/29] tests/functional: update the mips32el tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 08/29] tests/functional: update the ppc32 tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 07/29] tests/functional: update the mips64el tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 10/29] tests/functional: update the riscv32 tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 06/29] tests/functional: update the mips64 tuxrun tests, Alex Bennée, 2025/01/07
- [PATCH v3 09/29] tests/functional: update the ppc64 tuxrun tests, Alex Bennée, 2025/01/07