mbox series

[00/10] maintainer updates (testing, gdbstub)

Message ID 20240925171140.1307033-1-alex.bennee@linaro.org
Headers show
Series maintainer updates (testing, gdbstub) | expand

Message

Alex Bennée Sept. 25, 2024, 5:11 p.m. UTC
Welcome to the first post KVM forum series. We have:

  - fix from Ilya for microblaze atomics
  - Pierrick's tsan updates
  - I've added my testing and gdbstub trees to MAINTAINERS
  - enabled a very basic aarch64_be-linux-user test
  - fixed the missing gdb XML fails that cause aarch64_be-linux-user to assert
  - finally I've made the mips64el cross compiler bookworm and allow_fail

Alex Bennée (6):
  testing: bump mips64el cross to bookworm and allow to fail
  tests/docker: add NOFETCH env variable for testing
  MAINTAINERS: mention my testing/next tree
  MAINTAINERS: mention my gdbstub/next tree
  config/targets: update aarch64_be-linux-user gdb XML list
  tests/tcg: enable basic testing for aarch64_be-linux-user

Ilya Leoshkevich (1):
  tests/docker: Fix microblaze atomics

Pierrick Bouvier (3):
  meson: hide tsan related warnings
  target/i386: fix build warning (gcc-12 -fsanitize=thread)
  docs/devel: update tsan build documentation

 MAINTAINERS                                   |  2 ++
 docs/devel/testing/main.rst                   | 26 +++++++++++---
 configure                                     |  5 +++
 configs/targets/aarch64_be-linux-user.mak     |  2 +-
 meson.build                                   | 10 +++++-
 target/i386/kvm/kvm.c                         |  4 +--
 tests/tcg/aarch64_be/hello.c                  | 35 +++++++++++++++++++
 .gitlab-ci.d/container-cross.yml              |  3 ++
 tests/docker/Makefile.include                 |  5 +--
 .../build-toolchain.sh                        |  8 +++++
 .../dockerfiles/debian-mips64el-cross.docker  | 10 +++---
 .../dockerfiles/debian-toolchain.docker       |  7 ++++
 tests/lcitool/refresh                         |  2 +-
 tests/tcg/Makefile.target                     |  7 +++-
 tests/tcg/aarch64_be/Makefile.target          | 17 +++++++++
 15 files changed, 125 insertions(+), 18 deletions(-)
 create mode 100644 tests/tcg/aarch64_be/hello.c
 create mode 100644 tests/tcg/aarch64_be/Makefile.target

Comments

Pierrick Bouvier Sept. 25, 2024, 5:22 p.m. UTC | #1
On 9/25/24 10:11, Alex Bennée wrote:
> Welcome to the first post KVM forum series. We have:
> 
>    - fix from Ilya for microblaze atomics
>    - Pierrick's tsan updates
>    - I've added my testing and gdbstub trees to MAINTAINERS
>    - enabled a very basic aarch64_be-linux-user test
>    - fixed the missing gdb XML fails that cause aarch64_be-linux-user to assert
>    - finally I've made the mips64el cross compiler bookworm and allow_fail
> 
> Alex Bennée (6):
>    testing: bump mips64el cross to bookworm and allow to fail
>    tests/docker: add NOFETCH env variable for testing
>    MAINTAINERS: mention my testing/next tree
>    MAINTAINERS: mention my gdbstub/next tree
>    config/targets: update aarch64_be-linux-user gdb XML list
>    tests/tcg: enable basic testing for aarch64_be-linux-user
> 
> Ilya Leoshkevich (1):
>    tests/docker: Fix microblaze atomics
> 
> Pierrick Bouvier (3):
>    meson: hide tsan related warnings
>    target/i386: fix build warning (gcc-12 -fsanitize=thread)
>    docs/devel: update tsan build documentation
> 
>   MAINTAINERS                                   |  2 ++
>   docs/devel/testing/main.rst                   | 26 +++++++++++---
>   configure                                     |  5 +++
>   configs/targets/aarch64_be-linux-user.mak     |  2 +-
>   meson.build                                   | 10 +++++-
>   target/i386/kvm/kvm.c                         |  4 +--
>   tests/tcg/aarch64_be/hello.c                  | 35 +++++++++++++++++++
>   .gitlab-ci.d/container-cross.yml              |  3 ++
>   tests/docker/Makefile.include                 |  5 +--
>   .../build-toolchain.sh                        |  8 +++++
>   .../dockerfiles/debian-mips64el-cross.docker  | 10 +++---
>   .../dockerfiles/debian-toolchain.docker       |  7 ++++
>   tests/lcitool/refresh                         |  2 +-
>   tests/tcg/Makefile.target                     |  7 +++-
>   tests/tcg/aarch64_be/Makefile.target          | 17 +++++++++
>   15 files changed, 125 insertions(+), 18 deletions(-)
>   create mode 100644 tests/tcg/aarch64_be/hello.c
>   create mode 100644 tests/tcg/aarch64_be/Makefile.target
> 

Thanks for pulling tsan changes as part of this series.