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

There are two 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.

Please review:

  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: move clock_steps to after checks
  util/qemu-timer: fix indentation

Alex.

Alex Bennée (19):
  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: move clock_steps to after checks
  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

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

 system/qtest.c                               |  23 ++--
 tests/qtest/libqos/virtio.c                  |   6 +-
 util/qemu-timer.c                            |   2 +-
 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        | 105 ++++++++++++++++---
 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 +-
 21 files changed, 387 insertions(+), 98 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] 37+ messages in thread

end of thread, other threads:[~2024-12-12 14:04 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-10 20:43 [PATCH 00/20] testing/next: functional tests and qtest timers Alex Bennée
2024-12-10 20:43 ` [PATCH 01/20] tests/functional: update the arm tuxrun tests Alex Bennée
2024-12-10 20:43 ` [PATCH 02/20] tests/functional: update the i386 " Alex Bennée
2024-12-10 20:43 ` [PATCH 03/20] tests/functional: add a m68k " Alex Bennée
2024-12-10 20:43 ` [PATCH 04/20] tests/functional: update the mips32 " Alex Bennée
2024-12-10 20:43 ` [PATCH 05/20] tests/functional: update the mips32el " Alex Bennée
2024-12-10 20:43 ` [PATCH 06/20] tests/functional: update the mips64 " Alex Bennée
2024-12-10 20:43 ` [PATCH 07/20] tests/functional: update the mips64el " Alex Bennée
2024-12-10 20:43 ` [PATCH 08/20] tests/functional: update the ppc32 " Alex Bennée
2024-12-10 20:43 ` [PATCH 09/20] tests/functional: update the ppc64 " Alex Bennée
2024-12-10 20:43 ` [PATCH 10/20] tests/functional: update the riscv32 " Alex Bennée
2024-12-10 20:43 ` [PATCH 11/20] tests/functional: update the riscv64 " Alex Bennée
2024-12-10 20:43 ` [PATCH 12/20] tests/functional: update the s390x " Alex Bennée
2024-12-10 20:43 ` [PATCH 13/20] tests/functional: update the sparc64 " Alex Bennée
2024-12-10 20:43 ` [PATCH 14/20] tests/functional: update the x86_64 " Alex Bennée
2024-12-10 20:43 ` [PATCH 15/20] tests/functional/aarch64: add tests for FEAT_RME Alex Bennée
2024-12-10 22:15   ` Richard Henderson
2024-12-11  2:32     ` Pierrick Bouvier
2024-12-11  8:04   ` Thomas Huth
2024-12-11 16:21     ` Pierrick Bouvier
2024-12-10 20:43 ` [PATCH 16/20] util/qemu-timer: fix indentation Alex Bennée
2024-12-10 22:16   ` Richard Henderson
2024-12-11  6:30   ` Thomas Huth
2024-12-10 20:43 ` [PATCH 17/20] tests/qtest: move clock_steps to after checks Alex Bennée
2024-12-11  6:37   ` Thomas Huth
2024-12-12 12:34   ` Fabiano Rosas
2024-12-10 20:43 ` [PATCH 18/20] system/qtest: properly feedback results of clock_[step|set] Alex Bennée
2024-12-11  6:35   ` Thomas Huth
2024-12-12 12:36   ` Fabiano Rosas
2024-12-10 20:43 ` [PATCH 19/20] tests/functional: remove hacky sleep from the tests Alex Bennée
2024-12-10 22:18   ` Richard Henderson
2024-12-11  6:39   ` Thomas Huth
2024-12-10 20:43 ` [PATCH 20/20] tests/functional: extend test_aarch64_virt with vulkan test Alex Bennée
2024-12-10 22:20   ` Richard Henderson
2024-12-11  6:58   ` Thomas Huth
2024-12-12 12:32     ` Alex Bennée
2024-12-12 14:03       ` Thomas Huth

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.