qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 00/20] Test updates (tuxrun tests, new QTest maintainer, ...)
@ 2024-10-21 16:11 Thomas Huth
  2024-10-21 16:11 ` [PULL v2 09/20] tests/functional: Convert the Avocado arm tuxrun tests Thomas Huth
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Thomas Huth @ 2024-10-21 16:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

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



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

end of thread, other threads:[~2024-10-22 13:53 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-21 16:11 [PULL v2 00/20] Test updates (tuxrun tests, new QTest maintainer, ...) Thomas Huth
2024-10-21 16:11 ` [PULL v2 09/20] tests/functional: Convert the Avocado arm tuxrun tests Thomas Huth
2024-10-21 16:11 ` [PULL v2 12/20] tests/functional: Convert the Avocado i386 tuxrun test Thomas Huth
2024-10-21 16:11 ` [PULL v2 13/20] tests/functional: Convert the Avocado x86_64 " Thomas Huth
2024-10-21 16:11 ` [PULL v2 14/20] tests/functional: Convert the Avocado mips " Thomas Huth
2024-10-21 16:11 ` [PULL v2 15/20] tests/functional: Convert the Avocado mipsel " Thomas Huth
2024-10-21 16:11 ` [PULL v2 16/20] tests/functional: Convert the Avocado mips64 " Thomas Huth
2024-10-21 16:11 ` [PULL v2 17/20] tests/functional: Convert the Avocado mips64el " Thomas Huth
2024-10-21 16:11 ` [PULL v2 18/20] tests/functional: Convert the Avocado ppc32 " Thomas Huth
2024-10-21 16:11 ` [PULL v2 20/20] tests/functional: Convert the Avocado sh4 " Thomas Huth
2024-10-22 13:53 ` [PULL v2 00/20] Test updates (tuxrun tests, new QTest maintainer, ...) Peter Maydell

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