mbox

[PULL,00/18] Functional and other test improvements

Message ID 20250226095731.1172375-1-thuth@redhat.com (mailing list archive)
State New
Headers show

Pull-request

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

Message

Thomas Huth Feb. 26, 2025, 9:57 a.m. UTC
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