qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: "Alex Bennée" <alex.bennee@linaro.org>, peter.maydell@linaro.org
Cc: qemu-devel@nongnu.org
Subject: Re: [PULL 00/13] testing, semihosting and doc fixes
Date: Fri, 29 Jul 2022 08:36:46 -0700	[thread overview]
Message-ID: <f321b75a-dbc9-9947-85ea-48d7e7be7199@linaro.org> (raw)
In-Reply-To: <20220729091943.2152410-1-alex.bennee@linaro.org>

On 7/29/22 02:19, Alex Bennée wrote:
> The following changes since commit cc42559ab129a15554cc485ea9265e34dde7ab5b:
> 
>    Merge tag 'pull-ppc-20220728' of https://gitlab.com/danielhb/qemu into staging (2022-07-28 15:06:42 -0700)
> 
> are available in the Git repository at:
> 
>    https://github.com/stsquad/qemu.git tags/pull-testing-next-290722-1
> 
> for you to fetch changes up to 1235cf7d315b415fc2e4aa81815fda6ce96518c4:
> 
>    qemu-options: bring the kernel and image options together (2022-07-29 09:48:01 +0100)
> 
> ----------------------------------------------------------------
> Testing, semihosting and doc fixes:
> 
>    - update to latest libvirt-ci
>    - echo testlog.txt on failed cirrus runs
>    - drop containers-layer2 stage
>    - update handling of symlinks on windows builds
>    - return 0 for failure of semihosting console write
>    - don't copy unused buffer after semihost operation
>    - check for errors in semihosting args
>    - fix buffer handling for semihosting TMPNAM
>    - add qapi exit-failure PanicAction
>    - add lowcore unaligned access test to s390x
>    - fix documentation of OBJECT_DECLARE_SIMPLE_TYPE
>    - expand documentation on booting code

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> Alex Bennée (2):
>        docs/devel: fix description of OBJECT_DECLARE_SIMPLE_TYPE
>        qemu-options: bring the kernel and image options together
> 
> Bin Meng (2):
>        .cirrus.yml: Change winsymlinks to 'native'
>        .gitlab-ci.d/windows.yml: Enable native Windows symlink
> 
> Daniel P. Berrangé (3):
>        tests: refresh to latest libvirt-ci module
>        gitlab: show testlog.txt contents when cirrus/custom-runner jobs fail
>        gitlab: drop 'containers-layer2' stage
> 
> Ilya Leoshkevich (2):
>        qapi: Add exit-failure PanicAction
>        tests/tcg/s390x: Test unaligned accesses to lowcore
> 
> Peter Maydell (4):
>        semihosting: Don't return negative values on qemu_semihosting_console_write() failure
>        semihosting: Don't copy buffer after console_write()
>        semihosting: Check for errors on SET_ARG()
>        semihosting: Fix handling of buffer in TARGET_SYS_TMPNAM
> 
>   docs/devel/qom.rst                                 |  3 +-
>   qapi/run-state.json                                |  5 +-
>   include/sysemu/sysemu.h                            |  2 +-
>   semihosting/arm-compat-semi.c                      | 29 +++++--
>   semihosting/console.c                              |  3 +-
>   semihosting/syscalls.c                             |  2 +-
>   softmmu/main.c                                     |  6 +-
>   softmmu/runstate.c                                 | 17 +++-
>   .cirrus.yml                                        |  2 +-
>   .gitlab-ci.d/cirrus/build.yml                      |  3 +-
>   .gitlab-ci.d/cirrus/freebsd-12.vars                |  3 +-
>   .gitlab-ci.d/cirrus/freebsd-13.vars                |  3 +-
>   .gitlab-ci.d/cirrus/macos-11.vars                  |  4 +-
>   .gitlab-ci.d/container-cross.yml                   | 24 +++---
>   .../custom-runners/centos-stream-8-x86_64.yml      |  2 +
>   .../custom-runners/ubuntu-20.04-aarch32.yml        |  2 +
>   .../custom-runners/ubuntu-20.04-aarch64.yml        | 12 +++
>   .gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml | 12 +++
>   .gitlab-ci.d/stages.yml                            |  1 -
>   .gitlab-ci.d/windows.yml                           |  2 +
>   qemu-options.hx                                    | 98 +++++++++++++++++-----
>   tests/docker/dockerfiles/alpine.docker             |  4 +-
>   tests/docker/dockerfiles/centos8.docker            |  6 +-
>   tests/docker/dockerfiles/debian-amd64.docker       |  2 +
>   tests/docker/dockerfiles/debian-arm64-cross.docker |  2 +
>   tests/docker/dockerfiles/debian-armel-cross.docker |  2 +
>   tests/docker/dockerfiles/debian-armhf-cross.docker |  2 +
>   .../dockerfiles/debian-mips64el-cross.docker       |  2 +
>   .../docker/dockerfiles/debian-mipsel-cross.docker  |  2 +
>   .../docker/dockerfiles/debian-ppc64el-cross.docker |  2 +
>   tests/docker/dockerfiles/debian-s390x-cross.docker |  2 +
>   tests/docker/dockerfiles/fedora.docker             |  3 +-
>   tests/docker/dockerfiles/opensuse-leap.docker      |  7 +-
>   tests/docker/dockerfiles/ubuntu2004.docker         |  2 +
>   tests/lcitool/libvirt-ci                           |  2 +-
>   tests/lcitool/projects/qemu.yml                    |  6 +-
>   tests/lcitool/refresh                              |  4 +-
>   tests/tcg/s390x/Makefile.softmmu-target            |  9 ++
>   tests/tcg/s390x/unaligned-lowcore.S                | 19 +++++
>   39 files changed, 243 insertions(+), 70 deletions(-)
>   create mode 100644 tests/tcg/s390x/Makefile.softmmu-target
>   create mode 100644 tests/tcg/s390x/unaligned-lowcore.S
> 



      parent reply	other threads:[~2022-07-29 15:40 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-29  9:19 [PULL 00/13] testing, semihosting and doc fixes Alex Bennée
2022-07-29  9:19 ` [PULL 01/13] tests: refresh to latest libvirt-ci module Alex Bennée
2022-07-29  9:19 ` [PULL 02/13] gitlab: show testlog.txt contents when cirrus/custom-runner jobs fail Alex Bennée
2022-07-29  9:19 ` [PULL 03/13] gitlab: drop 'containers-layer2' stage Alex Bennée
2022-07-29  9:19 ` [PULL 04/13] .cirrus.yml: Change winsymlinks to 'native' Alex Bennée
2022-07-29  9:19 ` [PULL 05/13] .gitlab-ci.d/windows.yml: Enable native Windows symlink Alex Bennée
2022-07-29  9:19 ` [PULL 06/13] semihosting: Don't return negative values on qemu_semihosting_console_write() failure Alex Bennée
2022-07-29  9:19 ` [PULL 07/13] semihosting: Don't copy buffer after console_write() Alex Bennée
2022-07-29  9:19 ` [PULL 08/13] semihosting: Check for errors on SET_ARG() Alex Bennée
2022-07-29  9:19 ` [PULL 09/13] semihosting: Fix handling of buffer in TARGET_SYS_TMPNAM Alex Bennée
2022-07-29  9:19 ` [PULL 10/13] qapi: Add exit-failure PanicAction Alex Bennée
2022-07-29  9:19 ` [PULL 11/13] tests/tcg/s390x: Test unaligned accesses to lowcore Alex Bennée
2022-07-29  9:19 ` [PULL 12/13] docs/devel: fix description of OBJECT_DECLARE_SIMPLE_TYPE Alex Bennée
2022-07-29  9:19 ` [PULL 13/13] qemu-options: bring the kernel and image options together Alex Bennée
2022-07-29 15:36 ` Richard Henderson [this message]

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=f321b75a-dbc9-9947-85ea-48d7e7be7199@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=alex.bennee@linaro.org \
    --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).