All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/27] testing/next: functional tests, qtest clocks, vm and keymaps
@ 2024-12-18 16:20 Alex Bennée
  2024-12-18 16:20 ` [PATCH v2 01/27] tests/functional: update the arm tuxrun tests Alex Bennée
                   ` (26 more replies)
  0 siblings, 27 replies; 38+ messages in thread
From: Alex Bennée @ 2024-12-18 16:20 UTC (permalink / raw)
  To: qemu-devel
  Cc: Daniel P. Berrangé, Ed Maste, Eric Farman, Thomas Huth,
	Li-Wen Hsu, Daniel Henrique Barboza, Aurelien Jarno,
	Fabiano Rosas, Radoslaw Biernacki, Mark Cave-Ayland,
	Marc-André Lureau, Philippe Mathieu-Daudé, qemu-riscv,
	Nicholas Piggin, Joel Stanley, Beraldo Leal, Markus Armbruster,
	Jiaxun Yang, Weiwei Li, Peter Maydell, Cleber Rosa, Leif Lindholm,
	Christian Borntraeger, John Snow, Marcel Apfelbaum,
	Palmer Dabbelt, Bin Meng, Daniel Henrique Barboza, Paolo Bonzini,
	Liu Zhiwei, Wainer dos Santos Moschetta, Laurent Vivier,
	Pavel Dovgalyuk, Richard Henderson, Marcin Juszkiewicz,
	Halil Pasic, qemu-arm, Harsh Prateek Bora, qemu-ppc,
	Bernhard Beschow, Michael S. Tsirkin, qemu-s390x, Laurent Vivier,
	Alistair Francis, Alex Bennée

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. Currently only the
virtio tests needed a little re-jigging although arguably the timeout
loops aren't needed at all.

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.

For v2
  - add test/vm and lcitool updates
  - don't move clock_step, remove them for virtio tests

I was planning on on making this a pre-PR but as I'm off for Christmas
this may as well percolate on the list for now. If any of the other
testing maintainers want to cherry-pick stuff into their PRs then be
my guest.

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/vm: fix build_path based path
  tests/docker: move riscv64 cross container from sid to trixie
  tests/lcitool: bump to latest version of libvirt-ci
  tests/functional: extend test_aarch64_virt with vulkan test
  tests/functional: remove hacky sleep from the tests
  system/qtest: properly feedback results of clock_[step|set]
  tests/qtest: remove clock_steps from virtio tests
  util/qemu-timer: fix indentation

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
  util/qemu-timer: fix indentation
  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: 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

Pierrick Bouvier (1):
  tests/functional/aarch64: add tests for FEAT_RME

 MAINTAINERS                                   |   1 +
 system/qtest.c                                |  23 ++--
 tests/qtest/libqos/virtio.c                   |   4 -
 util/qemu-timer.c                             |   2 +-
 .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 +-
 tests/functional/meson.build                  |   5 +
 tests/functional/test_aarch64_rme_sbsaref.py  |  70 +++++++++++
 tests/functional/test_aarch64_rme_virt.py     | 100 ++++++++++++++++
 tests/functional/test_aarch64_virt.py         | 113 +++++++++++++++---
 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 +-
 33 files changed, 441 insertions(+), 163 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



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

end of thread, other threads:[~2024-12-20 16:54 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-18 16:20 [PATCH v2 00/27] testing/next: functional tests, qtest clocks, vm and keymaps Alex Bennée
2024-12-18 16:20 ` [PATCH v2 01/27] tests/functional: update the arm tuxrun tests Alex Bennée
2024-12-18 16:20 ` [PATCH v2 02/27] tests/functional: update the i386 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 03/27] tests/functional: add a m68k " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 04/27] tests/functional: update the mips32 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 05/27] tests/functional: update the mips32el " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 06/27] tests/functional: update the mips64 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 07/27] tests/functional: update the mips64el " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 08/27] tests/functional: update the ppc32 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 09/27] tests/functional: update the ppc64 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 10/27] tests/functional: update the riscv32 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 11/27] tests/functional: update the riscv64 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 12/27] tests/functional: update the s390x " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 13/27] tests/functional: update the sparc64 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 14/27] tests/functional: update the x86_64 " Alex Bennée
2024-12-18 16:20 ` [PATCH v2 15/27] tests/functional/aarch64: add tests for FEAT_RME Alex Bennée
2024-12-18 16:31   ` Pierrick Bouvier
2024-12-19 19:56   ` Pierrick Bouvier
2024-12-20 16:54   ` Pierrick Bouvier
2024-12-18 16:20 ` [PATCH v2 16/27] util/qemu-timer: fix indentation Alex Bennée
2024-12-19 17:30   ` Philippe Mathieu-Daudé
2024-12-18 16:20 ` [PATCH v2 17/27] tests/qtest: remove clock_steps from virtio tests Alex Bennée
2024-12-18 16:20 ` [PATCH v2 18/27] system/qtest: properly feedback results of clock_[step|set] Alex Bennée
2024-12-18 20:10   ` Fabiano Rosas
2024-12-18 16:20 ` [PATCH v2 19/27] tests/functional: remove hacky sleep from the tests Alex Bennée
2024-12-18 16:25   ` Thomas Huth
2024-12-18 16:20 ` [PATCH v2 20/27] tests/functional: extend test_aarch64_virt with vulkan test Alex Bennée
2024-12-18 16:37   ` Thomas Huth
2024-12-18 16:39   ` Daniel P. Berrangé
2024-12-18 16:20 ` [PATCH v2 21/27] tests/lcitool: bump to latest version of libvirt-ci Alex Bennée
2024-12-18 16:42   ` Daniel P. Berrangé
2024-12-18 16:20 ` [PATCH v2 22/27] tests/docker: move riscv64 cross container from sid to trixie Alex Bennée
2024-12-18 16:20 ` [PATCH v2 23/27] tests/lcitool: remove temp workaround for debian mips64el Alex Bennée
2024-12-18 16:21 ` [PATCH v2 24/27] tests/vm: fix build_path based path Alex Bennée
2024-12-18 17:07   ` Philippe Mathieu-Daudé
2024-12-18 16:21 ` [PATCH v2 25/27] tests/vm: partially un-tabify help output Alex Bennée
2024-12-18 16:21 ` [PATCH v2 26/27] tests/vm: allow interactive login as root Alex Bennée
2024-12-18 16:21 ` [PATCH v2 27/27] pc-bios: ensure keymaps dependencies set vnc tests Alex Bennée

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.