From: Thomas Huth <thuth@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [PULL 00/14] Misc patches (functional tests, next-cube machine, ...)
Date: Thu, 31 Oct 2024 18:48:18 +0100 [thread overview]
Message-ID: <20241031174832.6574-1-thuth@redhat.com> (raw)
The following changes since commit 58d49b5895f2e0b5cfe4b2901bf24f3320b74f29:
Merge tag 'net-pull-request' of https://github.com/jasowang/qemu into staging (2024-10-29 14:00:43 +0000)
are available in the Git repository at:
https://gitlab.com/thuth/qemu.git tags/pull-request-2024-10-31
for you to fetch changes up to d73ad1b1c0e62976d4790606ee29725a0d8a8906:
tests/functional: Convert the riscv_opensbi avocado test into a standalone test (2024-10-31 07:57:47 +0100)
----------------------------------------------------------------
* Remove the redundant macOS-15 CI job
* Various fixes, improvements and additions for the functional test suite
* Restore the sh4eb target
* Fix the OpenBSD VM test
* Re-enable the pci-bridge device on s390x
* Minor clean-ups / fixes for the next-cube machine
----------------------------------------------------------------
Daniel P. Berrangé (2):
tests/functional: make tuxrun disk images writable
tests/functional: make cached asset files read-only
Mark Cave-Ayland (2):
next-cube: fix up compilation when DEBUG_NEXT is enabled
next-cube: remove cpu parameter from next_scsi_init()
Thomas Huth (10):
.gitlab-ci.d/cirrus: Remove the macos-15 job
Revert "Remove the unused sh4eb target"
tests/functional: Add a test for sh4eb
tests/vm/openbsd: Remove the "Time appears wrong" workaround
tests/functional: Fix the s390x and ppc64 tuxrun tests
hw/s390x: Re-enable the pci-bridge device on s390x
tests/functional: Convert the tcg_plugins test
tests/functional: Convert BananaPi tests to the functional framework
tests/functional: Convert the OrangePi tests to the functional framework
tests/functional: Convert the riscv_opensbi avocado test into a standalone test
MAINTAINERS | 4 +-
configs/devices/sh4eb-softmmu/default.mak | 3 +
configs/targets/sh4eb-softmmu.mak | 2 +
qapi/machine.json | 2 +-
hw/m68k/next-cube.c | 14 +-
tests/qtest/endianness-test.c | 1 +
tests/qtest/machine-none-test.c | 1 +
.gitlab-ci.d/buildtest.yml | 2 +-
.gitlab-ci.d/cirrus.yml | 22 +-
.gitlab-ci.d/cirrus/macos-15.vars | 16 -
.gitlab-ci.d/crossbuilds.yml | 2 +-
.travis.yml | 2 +-
hw/s390x/Kconfig | 1 +
tests/avocado/boot_linux_console.py | 411 ---------------------
tests/avocado/riscv_opensbi.py | 63 ----
tests/functional/meson.build | 22 +-
tests/functional/qemu_test/asset.py | 3 +
tests/functional/qemu_test/tuxruntest.py | 10 +-
tests/functional/qemu_test/utils.py | 21 ++
.../test_aarch64_tcg_plugins.py} | 37 +-
tests/functional/test_arm_bpim2u.py | 206 +++++++++++
tests/functional/test_arm_orangepi.py | 270 ++++++++++++++
tests/functional/test_ppc64_tuxrun.py | 4 +-
tests/functional/test_riscv_opensbi.py | 36 ++
tests/functional/test_sh4eb_r2d.py | 33 ++
tests/lcitool/refresh | 1 -
tests/qemu-iotests/testenv.py | 1 +
tests/qtest/meson.build | 1 +
tests/vm/openbsd | 1 -
29 files changed, 641 insertions(+), 551 deletions(-)
create mode 100644 configs/devices/sh4eb-softmmu/default.mak
create mode 100644 configs/targets/sh4eb-softmmu.mak
delete mode 100644 .gitlab-ci.d/cirrus/macos-15.vars
delete mode 100644 tests/avocado/riscv_opensbi.py
rename tests/{avocado/tcg_plugins.py => functional/test_aarch64_tcg_plugins.py} (78%)
mode change 100644 => 100755
create mode 100755 tests/functional/test_arm_bpim2u.py
create mode 100755 tests/functional/test_arm_orangepi.py
create mode 100755 tests/functional/test_riscv_opensbi.py
create mode 100755 tests/functional/test_sh4eb_r2d.py
next reply other threads:[~2024-10-31 17:50 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-31 17:48 Thomas Huth [this message]
2024-10-31 17:48 ` [PULL 01/14] .gitlab-ci.d/cirrus: Remove the macos-15 job Thomas Huth
2024-10-31 17:48 ` [PULL 02/14] tests/functional: make tuxrun disk images writable Thomas Huth
2024-10-31 17:48 ` [PULL 03/14] tests/functional: make cached asset files read-only Thomas Huth
2024-10-31 17:48 ` [PULL 04/14] Revert "Remove the unused sh4eb target" Thomas Huth
2024-10-31 17:48 ` [PULL 05/14] tests/functional: Add a test for sh4eb Thomas Huth
2024-10-31 17:48 ` [PULL 06/14] tests/vm/openbsd: Remove the "Time appears wrong" workaround Thomas Huth
2024-10-31 17:48 ` [PULL 07/14] tests/functional: Fix the s390x and ppc64 tuxrun tests Thomas Huth
2024-10-31 17:48 ` [PULL 08/14] hw/s390x: Re-enable the pci-bridge device on s390x Thomas Huth
2024-10-31 17:48 ` [PULL 09/14] next-cube: fix up compilation when DEBUG_NEXT is enabled Thomas Huth
2024-10-31 17:48 ` [PULL 10/14] next-cube: remove cpu parameter from next_scsi_init() Thomas Huth
2024-10-31 17:48 ` [PULL 11/14] tests/functional: Convert the tcg_plugins test Thomas Huth
2024-10-31 17:48 ` [PULL 12/14] tests/functional: Convert BananaPi tests to the functional framework Thomas Huth
2024-11-01 19:07 ` Peter Maydell
2024-11-04 8:11 ` Thomas Huth
2024-10-31 17:48 ` [PULL 13/14] tests/functional: Convert the OrangePi " Thomas Huth
2024-10-31 17:48 ` [PULL 14/14] tests/functional: Convert the riscv_opensbi avocado test into a standalone test Thomas Huth
2024-11-04 12:31 ` [PULL 00/14] Misc patches (functional tests, next-cube machine, ...) Peter Maydell
2024-11-04 13:14 ` Thomas Huth
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=20241031174832.6574-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).