mbox

[PULL,0/8] testing and misc updates

Message ID 20210607143303.28572-1-alex.bennee@linaro.org (mailing list archive)
State New, archived
Headers show

Pull-request

https://github.com/stsquad/qemu.git tags/pull-testing-updates-070621-2

Message

Alex Bennée June 7, 2021, 2:32 p.m. UTC
The following changes since commit 6f398e533f5e259b4f937f4aa9de970f7201d166:

  Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-tcg-20210604' into staging (2021-06-05 11:25:52 +0100)

are available in the Git repository at:

  https://github.com/stsquad/qemu.git tags/pull-testing-updates-070621-2

for you to fetch changes up to 72205289a0799c6d0a73107198098b830dbea2f9:

  scripts/checkpatch.pl: process .c.inc and .h.inc files as C source (2021-06-07 14:49:30 +0100)

----------------------------------------------------------------
A few testing and configure updates:

  - add the multiarch signals stress test
  - fix display of multi-word compiler stanzas in meson
  - fix quoting of multi-word compiler stazas in configure.sh
  - tag some acceptance tests as TCG only
  - make checkpatch test work harder to find clean diffs
  - split gprof/gconv job to avoid timeouts
  - fix centos8 VM build by adding --source-path
  - make checkpatch aware of .h.inc and .c.inc paths

----------------------------------------------------------------
Alex Bennée (6):
      tests/tcg: add a multiarch signals test to stress test signal delivery
      meson.build: fix cosmetics of compiler display
      tests/tcg/configure.sh: tweak quoting of target_compiler
      tests/acceptance: tag various arm tests as TCG only
      gitlab: work harder to avoid false positives in checkpatch
      tests/vm: expose --source-path to scripts to find extra files

Matheus Ferst (1):
      scripts/checkpatch.pl: process .c.inc and .h.inc files as C source

Philippe Mathieu-Daudé (1):
      gitlab-ci: Split gprof-gcov job

 meson.build                            |   8 +-
 tests/tcg/multiarch/signals.c          | 149 +++++++++++++++++++++++++++++++++
 .gitlab-ci.d/buildtest.yml             |  17 +++-
 .gitlab-ci.d/static_checks.yml         |   6 +-
 scripts/checkpatch.pl                  |   4 +-
 tests/acceptance/boot_linux_console.py |  18 ++++
 tests/tcg/configure.sh                 |   6 +-
 tests/tcg/multiarch/Makefile.target    |   2 +
 tests/vm/Makefile.include              |   1 +
 tests/vm/basevm.py                     |   4 +
 tests/vm/centos.aarch64                |   2 +-
 11 files changed, 203 insertions(+), 14 deletions(-)
 create mode 100644 tests/tcg/multiarch/signals.c

Comments

Peter Maydell June 7, 2021, 4:17 p.m. UTC | #1
On Mon, 7 Jun 2021 at 15:33, Alex Bennée <alex.bennee@linaro.org> wrote:
>
> The following changes since commit 6f398e533f5e259b4f937f4aa9de970f7201d166:
>
>   Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-tcg-20210604' into staging (2021-06-05 11:25:52 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/stsquad/qemu.git tags/pull-testing-updates-070621-2
>
> for you to fetch changes up to 72205289a0799c6d0a73107198098b830dbea2f9:
>
>   scripts/checkpatch.pl: process .c.inc and .h.inc files as C source (2021-06-07 14:49:30 +0100)
>
> ----------------------------------------------------------------
> A few testing and configure updates:
>
>   - add the multiarch signals stress test
>   - fix display of multi-word compiler stanzas in meson
>   - fix quoting of multi-word compiler stazas in configure.sh
>   - tag some acceptance tests as TCG only
>   - make checkpatch test work harder to find clean diffs
>   - split gprof/gconv job to avoid timeouts
>   - fix centos8 VM build by adding --source-path
>   - make checkpatch aware of .h.inc and .c.inc paths
>


Applied, thanks.

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

-- PMM