qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [PULL v2 00/20] Test updates (tuxrun tests, new QTest maintainer, ...)
Date: Mon, 21 Oct 2024 18:11:44 +0200	[thread overview]
Message-ID: <20241021161156.176427-1-thuth@redhat.com> (raw)

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



             reply	other threads:[~2024-10-21 16:12 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-21 16:11 Thomas Huth [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241021161156.176427-1-thuth@redhat.com \
    --to=thuth@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).