The following changes since commit f1dd640896ee2b50cb34328f2568aad324702954:
Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2024-10-18 10:42:56 +0100) are available in the Git repository at: https://gitlab.com/thuth/qemu.git tags/pull-request-2024-10-21 for you to fetch changes up to c592ff35110a5f7e247d3933871d5aca74fc9288: tests/functional: Convert the Avocado sh4 tuxrun test (2024-10-21 16:41:39 +0200) ---------------------------------------------------------------- * Convert most Tuxrun Avocado tests to the new functional framework * Update the OpenBSD CI image to OpenBSD v7.6 * Bump timeout of the ide-test * New maintainer for the QTests * Disable the pci-bridge on s390x by default v2: Drop the troubled aarch64 tuxrun test (and modify the last patch to not remove the avocado test) ---------------------------------------------------------------- Brad Smith (1): tests/vm: update openbsd image to 7.6 Peter Maydell (1): tests/qtest: Raise the ide-test timeout Thomas Huth (18): MAINTAINERS: A new maintainer for the qtests hw/pci-bridge: Add a Kconfig switch for the normal PCI bridge tests/functional: Add a base class for the TuxRun tests tests/functional: Convert the Avocado ppc64 tuxrun tests tests/functional: Convert the Avocado sparc64 tuxrun test tests/functional: Convert the Avocado s390x tuxrun test tests/functional: Convert the Avocado arm tuxrun tests tests/functional: Convert the Avocado riscv32 tuxrun tests tests/functional: Convert the Avocado riscv64 tuxrun tests tests/functional: Convert the Avocado i386 tuxrun test tests/functional: Convert the Avocado x86_64 tuxrun test tests/functional: Convert the Avocado mips tuxrun test tests/functional: Convert the Avocado mipsel tuxrun test tests/functional: Convert the Avocado mips64 tuxrun test tests/functional: Convert the Avocado mips64el tuxrun test tests/functional: Convert the Avocado ppc32 tuxrun test Revert "hw/sh4/r2d: Realize IDE controller before accessing it" tests/functional: Convert the Avocado sh4 tuxrun test MAINTAINERS | 18 +- hw/sh4/r2d.c | 2 +- hw/pci-bridge/Kconfig | 5 + hw/pci-bridge/meson.build | 2 +- tests/avocado/tuxrun_baselines.py | 396 ------------------------------- tests/functional/meson.build | 26 ++ tests/functional/qemu_test/tuxruntest.py | 158 ++++++++++++ tests/functional/test_arm_tuxrun.py | 70 ++++++ tests/functional/test_i386_tuxrun.py | 35 +++ tests/functional/test_mips64_tuxrun.py | 35 +++ tests/functional/test_mips64el_tuxrun.py | 35 +++ tests/functional/test_mips_tuxrun.py | 36 +++ tests/functional/test_mipsel_tuxrun.py | 36 +++ tests/functional/test_ppc64_tuxrun.py | 110 +++++++++ tests/functional/test_ppc_tuxrun.py | 35 +++ tests/functional/test_riscv32_tuxrun.py | 38 +++ tests/functional/test_riscv64_tuxrun.py | 38 +++ tests/functional/test_s390x_tuxrun.py | 34 +++ tests/functional/test_sh4_tuxrun.py | 57 +++++ tests/functional/test_sparc64_tuxrun.py | 34 +++ tests/functional/test_x86_64_tuxrun.py | 36 +++ tests/qtest/meson.build | 1 + tests/vm/openbsd | 6 +- 23 files changed, 836 insertions(+), 407 deletions(-) create mode 100644 tests/functional/qemu_test/tuxruntest.py create mode 100755 tests/functional/test_arm_tuxrun.py create mode 100755 tests/functional/test_i386_tuxrun.py create mode 100755 tests/functional/test_mips64_tuxrun.py create mode 100755 tests/functional/test_mips64el_tuxrun.py create mode 100755 tests/functional/test_mips_tuxrun.py create mode 100755 tests/functional/test_mipsel_tuxrun.py create mode 100755 tests/functional/test_ppc64_tuxrun.py create mode 100755 tests/functional/test_ppc_tuxrun.py create mode 100755 tests/functional/test_riscv32_tuxrun.py create mode 100755 tests/functional/test_riscv64_tuxrun.py create mode 100755 tests/functional/test_s390x_tuxrun.py create mode 100755 tests/functional/test_sh4_tuxrun.py create mode 100755 tests/functional/test_sparc64_tuxrun.py create mode 100755 tests/functional/test_x86_64_tuxrun.py