mbox

[PULL,for,8.0,00/10] misc fixes (tests, gdbstub, metadata)

Message ID 20230404145925.2638152-1-alex.bennee@linaro.org
State New
Headers show

Pull-request

https://gitlab.com/stsquad/qemu.git tags/pull-for-8.0-040423-2

Message

Alex Bennée April 4, 2023, 2:59 p.m. UTC
The following changes since commit 51a6dc9d394098e8f4141fad869a1ee9585f54f8:

  Merge tag 'pull-target-arm-20230403' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-04-03 17:01:47 +0100)

are available in the Git repository at:

  https://gitlab.com/stsquad/qemu.git tags/pull-for-8.0-040423-2

for you to fetch changes up to c8cb603293fd329f2a62ade76ec9de3f462fc5c3:

  tests/avocado: Test Xen guest support under KVM (2023-04-04 15:56:44 +0100)

----------------------------------------------------------------
Final test and misc fixes:

  - add basic coverage analysis script
  - gdbstub only build one of libgdb_user/softmmu
  - don't break BSD gdb by advertising AUXV feature
  - add MAINTAINERS section for policy docs
  - update hexagon toolchain
  - explicitly invoke iotests with python for BSDs benefit
  - use system python on NetBSD
  - add some tests for the new KVM Xen guest support

----------------------------------------------------------------
Alex Bennée (5):
      scripts/coverage: initial coverage comparison script
      gdbstub: don't report auxv feature unless on Linux
      MAINTAINERS: add a section for policy documents
      metadata: add .git-blame-ignore-revs
      gitlab: fix typo

Daniel P. Berrangé (2):
      tests/qemu-iotests: explicitly invoke 'check' via 'python'
      tests/vm: use the default system python for NetBSD

David Woodhouse (1):
      tests/avocado: Test Xen guest support under KVM

Marco Liebel (1):
      Use hexagon toolchain version 16.0.0

Philippe Mathieu-Daudé (1):
      gdbstub: Only build libgdb_user.fa / libgdb_softmmu.fa if necessary

 MAINTAINERS                                        |  19 +++
 gdbstub/gdbstub.c                                  |   2 +-
 .git-blame-ignore-revs                             |  21 +++
 .gitlab-ci.d/base.yml                              |   2 +-
 gdbstub/meson.build                                |   6 +-
 scripts/coverage/compare_gcov_json.py              | 119 ++++++++++++++
 tests/avocado/kvm_xen_guest.py                     | 171 +++++++++++++++++++++
 .../docker/dockerfiles/debian-hexagon-cross.docker |   2 +-
 tests/qemu-iotests/meson.build                     |   7 +-
 tests/vm/netbsd                                    |   3 +-
 10 files changed, 342 insertions(+), 10 deletions(-)
 create mode 100644 .git-blame-ignore-revs
 create mode 100755 scripts/coverage/compare_gcov_json.py
 create mode 100644 tests/avocado/kvm_xen_guest.py

Comments

Peter Maydell April 4, 2023, 6:49 p.m. UTC | #1
On Tue, 4 Apr 2023 at 15:59, Alex Bennée <alex.bennee@linaro.org> wrote:
>
> The following changes since commit 51a6dc9d394098e8f4141fad869a1ee9585f54f8:
>
>   Merge tag 'pull-target-arm-20230403' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-04-03 17:01:47 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/stsquad/qemu.git tags/pull-for-8.0-040423-2
>
> for you to fetch changes up to c8cb603293fd329f2a62ade76ec9de3f462fc5c3:
>
>   tests/avocado: Test Xen guest support under KVM (2023-04-04 15:56:44 +0100)
>
> ----------------------------------------------------------------
> Final test and misc fixes:
>
>   - add basic coverage analysis script
>   - gdbstub only build one of libgdb_user/softmmu
>   - don't break BSD gdb by advertising AUXV feature
>   - add MAINTAINERS section for policy docs
>   - update hexagon toolchain
>   - explicitly invoke iotests with python for BSDs benefit
>   - use system python on NetBSD
>   - add some tests for the new KVM Xen guest support
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/8.0
for any user-visible changes.

-- PMM