qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/21] Test updates (tuxrun tests, new QTest maintainer, ...)
@ 2024-10-21 11:34 Thomas Huth
  2024-10-21 11:34 ` [PULL 01/21] tests/vm: update openbsd image to 7.6 Thomas Huth
                   ` (21 more replies)
  0 siblings, 22 replies; 29+ messages in thread
From: Thomas Huth @ 2024-10-21 11:34 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 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



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

end of thread, other threads:[~2024-10-21 16:04 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-21 11:34 [PULL 00/21] Test updates (tuxrun tests, new QTest maintainer, ...) Thomas Huth
2024-10-21 11:34 ` [PULL 01/21] tests/vm: update openbsd image to 7.6 Thomas Huth
2024-10-21 11:34 ` [PULL 02/21] tests/qtest: Raise the ide-test timeout Thomas Huth
2024-10-21 11:34 ` [PULL 03/21] MAINTAINERS: A new maintainer for the qtests Thomas Huth
2024-10-21 11:34 ` [PULL 04/21] hw/pci-bridge: Add a Kconfig switch for the normal PCI bridge Thomas Huth
2024-10-21 11:34 ` [PULL 05/21] tests/functional: Add a base class for the TuxRun tests Thomas Huth
2024-10-21 11:34 ` [PULL 06/21] tests/functional: Convert the Avocado ppc64 tuxrun tests Thomas Huth
2024-10-21 11:34 ` [PULL 07/21] tests/functional: Convert the Avocado aarch64 " Thomas Huth
2024-10-21 11:34 ` [PULL 08/21] tests/functional: Convert the Avocado sparc64 tuxrun test Thomas Huth
2024-10-21 11:34 ` [PULL 09/21] tests/functional: Convert the Avocado s390x " Thomas Huth
2024-10-21 11:34 ` [PULL 10/21] tests/functional: Convert the Avocado arm tuxrun tests Thomas Huth
2024-10-21 11:34 ` [PULL 11/21] tests/functional: Convert the Avocado riscv32 " Thomas Huth
2024-10-21 11:34 ` [PULL 12/21] tests/functional: Convert the Avocado riscv64 " Thomas Huth
2024-10-21 11:34 ` [PULL 13/21] tests/functional: Convert the Avocado i386 tuxrun test Thomas Huth
2024-10-21 11:34 ` [PULL 14/21] tests/functional: Convert the Avocado x86_64 " Thomas Huth
2024-10-21 11:34 ` [PULL 15/21] tests/functional: Convert the Avocado mips " Thomas Huth
2024-10-21 11:34 ` [PULL 16/21] tests/functional: Convert the Avocado mipsel " Thomas Huth
2024-10-21 11:34 ` [PULL 17/21] tests/functional: Convert the Avocado mips64 " Thomas Huth
2024-10-21 11:34 ` [PULL 18/21] tests/functional: Convert the Avocado mips64el " Thomas Huth
2024-10-21 11:34 ` [PULL 19/21] tests/functional: Convert the Avocado ppc32 " Thomas Huth
2024-10-21 11:34 ` [PULL 20/21] Revert "hw/sh4/r2d: Realize IDE controller before accessing it" Thomas Huth
2024-10-21 11:34 ` [PULL 21/21] tests/functional: Convert the Avocado sh4 tuxrun test Thomas Huth
2024-10-21 13:00 ` [PULL 00/21] Test updates (tuxrun tests, new QTest maintainer, ...) Peter Maydell
2024-10-21 13:18   ` Thomas Huth
2024-10-21 13:55     ` Thomas Huth
2024-10-21 13:59       ` Peter Maydell
2024-10-21 14:11         ` Thomas Huth
2024-10-21 15:39           ` Peter Maydell
2024-10-21 16:03             ` Thomas Huth

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