From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>
Subject: [PULL 00/19] Updates for testing, gitlab, gdbstub, plugins and semihosting
Date: Tue, 31 Oct 2023 14:43:42 +0000 [thread overview]
Message-ID: <20231031144401.1238210-1-alex.bennee@linaro.org> (raw)
The following changes since commit 516fffc9933cb21fad41ca8f7bf465d238d4d375:
Merge tag 'pull-lu-20231030' of https://gitlab.com/rth7680/qemu into staging (2023-10-31 07:12:40 +0900)
are available in the Git repository at:
https://gitlab.com/stsquad/qemu.git tags/pull-halloween-omnibus-311023-2
for you to fetch changes up to 7f4527626910f21c9e4421236ee7a6383eb3ce2b:
contrib/plugins: Close file descriptor on error return (2023-10-31 14:10:21 +0000)
----------------------------------------------------------------
Maintainer updates for testing, gitlab, gdbstub and plugins:
- add dtc package to openbsd VMs
- use -fno-stack-protector for non-stdlib tests
- split alpha and sh4 compilers into legacy image
- harmonise other compilers into debian-all-test-cross
- fix NULL check in gdb_regs
- fix memleak in semihosting
- remove unused parameter in plugin code
- fix fd leak in lockstep plugin
----------------------------------------------------------------
Akihiko Odaki (3):
tests/tcg: Add -fno-stack-protector
gdbstub: Check if gdb_regs is NULL
plugins: Remove an extra parameter
Alex Bennée (13):
gitlab: split alpha testing into a legacy container
gitlab: clean-up build-soft-softmmu job
gitlab: add build-loongarch to matrix
tests/docker: use debian-legacy-test-cross for alpha
tests/docker: move sh4 to use debian-legacy-test-cross
tests/docker: use debian-all-test-cross for power
tests/docker: use debian-all-test-cross for hppa
tests/docker: use debian-all-test-cross for m68k
tests/docker: use debian-all-test-cross for mips64
tests/docker: use debian-all-test-cross for mips
tests/docker: use debian-all-test-cross for riscv64
tests/docker: use debian-all-test-cross for sparc64
tests/docker: upgrade debian-all-test-cross to bookworm
Cong Liu (1):
contrib/plugins: Close file descriptor on error return
Matheus Tavares Bernardino (1):
semihosting: fix memleak at semihosting_arg_fallback
Thomas Huth (1):
tests/vm/openbsd: Use the system dtc package
configure | 38 ++++++++++++--
accel/tcg/plugin-gen.c | 9 ++--
contrib/plugins/lockstep.c | 2 +
gdbstub/gdbstub.c | 34 ++++++++-----
semihosting/config.c | 3 +-
tests/tcg/mips/hello-mips.c | 4 +-
.gitlab-ci.d/buildtest.yml | 34 +++++++++++--
.gitlab-ci.d/container-cross.yml | 59 +++-------------------
tests/docker/Makefile.include | 8 ---
.../dockerfiles/debian-all-test-cross.docker | 26 +++++-----
tests/docker/dockerfiles/debian-alpha-cross.docker | 19 -------
tests/docker/dockerfiles/debian-hppa-cross.docker | 19 -------
.../dockerfiles/debian-legacy-test-cross.docker | 49 ++++++++++++++++++
.../dockerfiles/debian-loongarch-cross.docker | 22 +++++++-
tests/docker/dockerfiles/debian-m68k-cross.docker | 19 -------
tests/docker/dockerfiles/debian-mips-cross.docker | 19 -------
.../docker/dockerfiles/debian-mips64-cross.docker | 19 -------
.../dockerfiles/debian-powerpc-test-cross.docker | 23 ---------
.../dockerfiles/debian-riscv64-test-cross.docker | 19 -------
tests/docker/dockerfiles/debian-sh4-cross.docker | 19 -------
.../docker/dockerfiles/debian-sparc64-cross.docker | 19 -------
tests/tcg/Makefile.target | 2 +-
tests/tcg/aarch64/Makefile.target | 2 +-
tests/tcg/arm/Makefile.target | 2 +-
tests/tcg/cris/Makefile.target | 2 +-
tests/tcg/hexagon/Makefile.target | 2 +-
tests/tcg/i386/Makefile.target | 2 +-
tests/tcg/minilib/Makefile.target | 2 +-
tests/tcg/mips/Makefile.target | 2 +-
tests/vm/openbsd | 6 ++-
30 files changed, 196 insertions(+), 289 deletions(-)
delete mode 100644 tests/docker/dockerfiles/debian-alpha-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-hppa-cross.docker
create mode 100644 tests/docker/dockerfiles/debian-legacy-test-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-m68k-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-mips-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-mips64-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-powerpc-test-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-riscv64-test-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-sh4-cross.docker
delete mode 100644 tests/docker/dockerfiles/debian-sparc64-cross.docker
--
2.39.2
next reply other threads:[~2023-10-31 14:45 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-31 14:43 Alex Bennée [this message]
2023-10-31 14:43 ` [PULL 01/19] tests/vm/openbsd: Use the system dtc package Alex Bennée
2023-10-31 14:43 ` [PULL 02/19] tests/tcg: Add -fno-stack-protector Alex Bennée
2023-10-31 14:43 ` [PULL 03/19] gitlab: split alpha testing into a legacy container Alex Bennée
2023-10-31 14:43 ` [PULL 04/19] gitlab: clean-up build-soft-softmmu job Alex Bennée
2023-10-31 14:43 ` [PULL 05/19] gitlab: add build-loongarch to matrix Alex Bennée
2023-10-31 14:43 ` [PULL 06/19] tests/docker: use debian-legacy-test-cross for alpha Alex Bennée
2023-10-31 14:43 ` [PULL 07/19] tests/docker: move sh4 to use debian-legacy-test-cross Alex Bennée
2023-10-31 14:43 ` [PULL 08/19] tests/docker: use debian-all-test-cross for power Alex Bennée
2023-10-31 14:43 ` [PULL 09/19] tests/docker: use debian-all-test-cross for hppa Alex Bennée
2023-10-31 14:43 ` [PULL 10/19] tests/docker: use debian-all-test-cross for m68k Alex Bennée
2023-10-31 14:43 ` [PULL 11/19] tests/docker: use debian-all-test-cross for mips64 Alex Bennée
2023-10-31 14:43 ` [PULL 12/19] tests/docker: use debian-all-test-cross for mips Alex Bennée
2023-10-31 14:43 ` [PULL 13/19] tests/docker: use debian-all-test-cross for riscv64 Alex Bennée
2023-10-31 14:43 ` [PULL 14/19] tests/docker: use debian-all-test-cross for sparc64 Alex Bennée
2023-10-31 14:43 ` [PULL 15/19] tests/docker: upgrade debian-all-test-cross to bookworm Alex Bennée
2023-10-31 14:43 ` [PULL 16/19] gdbstub: Check if gdb_regs is NULL Alex Bennée
2023-10-31 14:43 ` [PULL 17/19] semihosting: fix memleak at semihosting_arg_fallback Alex Bennée
2023-10-31 14:44 ` [PULL 18/19] plugins: Remove an extra parameter Alex Bennée
2023-10-31 14:44 ` [PULL 19/19] contrib/plugins: Close file descriptor on error return Alex Bennée
2023-10-31 23:31 ` [PULL 00/19] Updates for testing, gitlab, gdbstub, plugins and semihosting Stefan Hajnoczi
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=20231031144401.1238210-1-alex.bennee@linaro.org \
--to=alex.bennee@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).