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 ee772a332af8f23acf604ad0fb5132f886b0eb16: tests/functional: Convert the Avocado sh4 tuxrun test (2024-10-21 13:25:12 +0200) ---------------------------------------------------------------- * Convert the 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 ---------------------------------------------------------------- Brad Smith (1): tests/vm: update openbsd image to 7.6 Peter Maydell (1): tests/qtest: Raise the ide-test timeout Thomas Huth (19): 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 aarch64 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 | 22 +- hw/sh4/r2d.c | 2 +- hw/pci-bridge/Kconfig | 5 + hw/pci-bridge/meson.build | 2 +- tests/avocado/tuxrun_baselines.py | 620 ------------------------------- tests/functional/meson.build | 28 ++ tests/functional/qemu_test/tuxruntest.py | 158 ++++++++ tests/functional/test_aarch64_tuxrun.py | 50 +++ 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 +- 24 files changed, 891 insertions(+), 632 deletions(-) delete mode 100644 tests/avocado/tuxrun_baselines.py create mode 100644 tests/functional/qemu_test/tuxruntest.py create mode 100755 tests/functional/test_aarch64_tuxrun.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