qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/18] Functional and other test improvements
@ 2025-02-26  9:57 Thomas Huth
  2025-02-26  9:57 ` [PULL 01/18] tests/functional: Have microblaze tests inherit common parent class Thomas Huth
                   ` (18 more replies)
  0 siblings, 19 replies; 21+ messages in thread
From: Thomas Huth @ 2025-02-26  9:57 UTC (permalink / raw)
  To: qemu-devel; +Cc: Stefan Hajnoczi

 Hi!

The following changes since commit b69801dd6b1eb4d107f7c2f643adf0a4e3ec9124:

  Merge tag 'for_upstream' of https://git.kernel.org/pub/scm/virt/kvm/mst/qemu into staging (2025-02-22 05:06:39 +0800)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2025-02-26

for you to fetch changes up to 72cdd672e18c486db7c54a7b33c8b4fe7a0026e6:

  tests/functional: Replace the ppc64 e500 advent calendar test (2025-02-26 08:05:09 +0100)

----------------------------------------------------------------
* Convert more avocado tests to the functional framework
* Fix a problem with the check-patch/check-dco CI jobs
* Replace the ppc64 e500 functional test with a better one
* Test retrieval of machine class properties

----------------------------------------------------------------
Cédric Le Goater (1):
      tests/functional: Replace the ppc64 e500 advent calendar test

Daniel P. Berrangé (1):
      gitlab: use --refetch in check-patch/check-dco jobs

Peter Maydell (1):
      tests/functional: Bump some arm test timeouts

Philippe Mathieu-Daudé (1):
      tests/functional: Have microblaze tests inherit common parent class

Thomas Huth (14):
      tests/qtest/qom-test: Test retrieval of machine class properties
      tests/functional: Provide a proper name for the VMs in the replay tests
      tests/functional: Convert the xtensa replay test to the functional framework
      tests/functional: Convert the sparc replay avocado test
      tests/functional: Convert the 32-bit ppc replay avocado tests
      tests/functional: Convert the or1k replay avocado tests
      tests/functional: Convert the ppc64 replay avocado tests
      tests/functional: Convert the microblaze replay avocado tests
      tests/functional: Convert the m68k replay avocado tests
      tests/functional: Convert the arm replay avocado tests
      tests/functional: Convert the alpha replay avocado tests
      tests/functional: Convert the s390x replay avocado tests
      tests/functional: Convert the aarch64 replay avocado tests
      tests/functional: Convert the x86_64 replay avocado tests

 tests/qtest/qom-test.c                           |  11 +
 .gitlab-ci.d/check-dco.py                        |   2 +-
 .gitlab-ci.d/check-patch.py                      |   2 +-
 tests/avocado/replay_kernel.py                   | 302 -----------------------
 tests/functional/meson.build                     |  22 +-
 tests/functional/replay_kernel.py                |   2 +-
 tests/functional/test_aarch64_replay.py          |  30 +++
 tests/functional/test_alpha_replay.py            |  29 +++
 tests/functional/test_arm_replay.py              |  69 ++++++
 tests/functional/test_arm_sx1.py                 |   6 +-
 tests/functional/test_m68k_replay.py             |  42 ++++
 tests/functional/test_microblaze_replay.py       |  28 +++
 tests/functional/test_microblaze_s3adsp1800.py   |  27 ++
 tests/functional/test_microblazeel_s3adsp1800.py |  31 +--
 tests/functional/test_or1k_replay.py             |  27 ++
 tests/functional/test_ppc64_e500.py              |  33 ++-
 tests/functional/test_ppc64_replay.py            |  49 ++++
 tests/functional/test_ppc_replay.py              |  34 +++
 tests/functional/test_s390x_replay.py            |  28 +++
 tests/functional/test_sparc_replay.py            |  27 ++
 tests/functional/test_x86_64_replay.py           |  35 +++
 tests/functional/test_xtensa_replay.py           |  28 +++
 22 files changed, 519 insertions(+), 345 deletions(-)
 create mode 100755 tests/functional/test_aarch64_replay.py
 create mode 100755 tests/functional/test_alpha_replay.py
 create mode 100755 tests/functional/test_arm_replay.py
 create mode 100755 tests/functional/test_m68k_replay.py
 create mode 100755 tests/functional/test_microblaze_replay.py
 create mode 100755 tests/functional/test_or1k_replay.py
 create mode 100755 tests/functional/test_ppc64_replay.py
 create mode 100755 tests/functional/test_ppc_replay.py
 create mode 100755 tests/functional/test_s390x_replay.py
 create mode 100755 tests/functional/test_sparc_replay.py
 create mode 100755 tests/functional/test_x86_64_replay.py
 create mode 100755 tests/functional/test_xtensa_replay.py



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

end of thread, other threads:[~2025-03-07 19:09 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-26  9:57 [PULL 00/18] Functional and other test improvements Thomas Huth
2025-02-26  9:57 ` [PULL 01/18] tests/functional: Have microblaze tests inherit common parent class Thomas Huth
2025-02-26  9:57 ` [PULL 02/18] tests/qtest/qom-test: Test retrieval of machine class properties Thomas Huth
2025-02-26  9:57 ` [PULL 03/18] tests/functional: Provide a proper name for the VMs in the replay tests Thomas Huth
2025-02-26  9:57 ` [PULL 04/18] tests/functional: Convert the xtensa replay test to the functional framework Thomas Huth
2025-02-26  9:57 ` [PULL 05/18] tests/functional: Convert the sparc replay avocado test Thomas Huth
2025-02-26  9:57 ` [PULL 06/18] tests/functional: Convert the 32-bit ppc replay avocado tests Thomas Huth
2025-02-26  9:57 ` [PULL 07/18] tests/functional: Convert the or1k " Thomas Huth
2025-02-26  9:57 ` [PULL 08/18] tests/functional: Convert the ppc64 " Thomas Huth
2025-02-26  9:57 ` [PULL 09/18] tests/functional: Convert the microblaze " Thomas Huth
2025-02-26  9:57 ` [PULL 10/18] tests/functional: Convert the m68k " Thomas Huth
2025-02-26  9:57 ` [PULL 11/18] tests/functional: Convert the arm " Thomas Huth
2025-03-07 19:08   ` Peter Maydell
2025-02-26  9:57 ` [PULL 12/18] tests/functional: Convert the alpha " Thomas Huth
2025-02-26  9:57 ` [PULL 13/18] tests/functional: Convert the s390x " Thomas Huth
2025-02-26  9:57 ` [PULL 14/18] tests/functional: Convert the aarch64 " Thomas Huth
2025-02-26  9:57 ` [PULL 15/18] tests/functional: Convert the x86_64 " Thomas Huth
2025-02-26  9:57 ` [PULL 16/18] tests/functional: Bump some arm test timeouts Thomas Huth
2025-02-26  9:57 ` [PULL 17/18] gitlab: use --refetch in check-patch/check-dco jobs Thomas Huth
2025-02-26  9:57 ` [PULL 18/18] tests/functional: Replace the ppc64 e500 advent calendar test Thomas Huth
2025-03-03 12:12 ` [PULL 00/18] Functional and other test improvements Stefan Hajnoczi

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).