qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/14] Testing and misc patches
@ 2022-07-05 10:38 Thomas Huth
  2022-07-05 10:38 ` [PULL 01/14] tests: fix test-cutils leaks Thomas Huth
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Thomas Huth @ 2022-07-05 10:38 UTC (permalink / raw)
  To: qemu-devel, Richard Henderson

 Hi Richard!

The following changes since commit dfe2382f0641f537fdd33399d579215077c8f68c:

  Merge tag 'kraxel-20220704-pull-request' of https://gitlab.com/kraxel/qemu into staging (2022-07-04 14:57:21 +0530)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2022-07-05

for you to fetch changes up to 7a890b756620223f35f8056baddf0406526ae025:

  include/qemu/host-utils: Remove unused code in the *_overflow wrappers (2022-07-05 10:15:49 +0200)

----------------------------------------------------------------
* Fix memory leak in test-cutils
* Fix edk2/opensbi jobs to not run automatically by accident
* Improve timings in the migration qtest
* Remove libvixl disassembler
* Add ukrainian translation
* Require a recent version of libpng

----------------------------------------------------------------

Andrij Mizyk (1):
  po: add ukrainian translation

Daniel P. Berrangé (7):
  gitlab: normalize indentation in edk2/opensbi rules
  gitlab: tweak comments in edk2/opensbi jobs
  gitlab: honour QEMU_CI variable in edk2/opensbi jobs
  tests: wait max 120 seconds for migration test status changes
  tests: wait for migration completion before looking for STOP event
  tests: increase migration test converge downtime to 30 seconds
  tests: use consistent bandwidth/downtime limits in migration tests

Marc-André Lureau (1):
  tests: fix test-cutils leaks

Philippe Mathieu-Daudé (1):
  tests/fp: Do not build softfloat3 tests if TCG is disabled

Richard Henderson (1):
  gitlab-ci: Extend timeout for ubuntu-20.04-s390x-all to 75m

Thomas Huth (3):
  disas: Remove libvixl disassembler
  meson.build: Require a recent version of libpng
  include/qemu/host-utils: Remove unused code in the *_overflow wrappers

 meson.build                                   |    6 +-
 disas/libvixl/vixl/a64/assembler-a64.h        | 4624 -----------------
 disas/libvixl/vixl/a64/constants-a64.h        | 2116 --------
 disas/libvixl/vixl/a64/cpu-a64.h              |   83 -
 disas/libvixl/vixl/a64/decoder-a64.h          |  275 -
 disas/libvixl/vixl/a64/disasm-a64.h           |  177 -
 disas/libvixl/vixl/a64/instructions-a64.h     |  757 ---
 disas/libvixl/vixl/code-buffer.h              |  113 -
 disas/libvixl/vixl/compiler-intrinsics.h      |  155 -
 disas/libvixl/vixl/globals.h                  |  155 -
 disas/libvixl/vixl/invalset.h                 |  775 ---
 disas/libvixl/vixl/platform.h                 |   39 -
 disas/libvixl/vixl/utils.h                    |  286 -
 include/exec/poison.h                         |    2 -
 include/qemu/host-utils.h                     |   65 -
 disas.c                                       |    3 -
 target/arm/cpu.c                              |    7 -
 tests/qtest/migration-helpers.c               |   14 +
 tests/qtest/migration-test.c                  |   59 +-
 tests/unit/test-cutils.c                      |   42 +-
 .../custom-runners/ubuntu-20.04-s390x.yml     |    1 +
 .gitlab-ci.d/edk2.yml                         |  133 +-
 .gitlab-ci.d/opensbi.yml                      |  134 +-
 MAINTAINERS                                   |    4 -
 disas/arm-a64.cc                              |  101 -
 disas/libvixl/LICENCE                         |   30 -
 disas/libvixl/README                          |   11 -
 disas/libvixl/meson.build                     |    7 -
 disas/libvixl/vixl/a64/decoder-a64.cc         |  877 ----
 disas/libvixl/vixl/a64/disasm-a64.cc          | 3495 -------------
 disas/libvixl/vixl/a64/instructions-a64.cc    |  622 ---
 disas/libvixl/vixl/compiler-intrinsics.cc     |  144 -
 disas/libvixl/vixl/utils.cc                   |  142 -
 disas/meson.build                             |    5 -
 po/LINGUAS                                    |    1 +
 po/uk.po                                      |   75 +
 scripts/clean-header-guards.pl                |    4 +-
 scripts/clean-includes                        |    2 +-
 scripts/coverity-scan/COMPONENTS.md           |    3 -
 tests/fp/meson.build                          |    3 +
 40 files changed, 314 insertions(+), 15233 deletions(-)
 delete mode 100644 disas/libvixl/vixl/a64/assembler-a64.h
 delete mode 100644 disas/libvixl/vixl/a64/constants-a64.h
 delete mode 100644 disas/libvixl/vixl/a64/cpu-a64.h
 delete mode 100644 disas/libvixl/vixl/a64/decoder-a64.h
 delete mode 100644 disas/libvixl/vixl/a64/disasm-a64.h
 delete mode 100644 disas/libvixl/vixl/a64/instructions-a64.h
 delete mode 100644 disas/libvixl/vixl/code-buffer.h
 delete mode 100644 disas/libvixl/vixl/compiler-intrinsics.h
 delete mode 100644 disas/libvixl/vixl/globals.h
 delete mode 100644 disas/libvixl/vixl/invalset.h
 delete mode 100644 disas/libvixl/vixl/platform.h
 delete mode 100644 disas/libvixl/vixl/utils.h
 delete mode 100644 disas/arm-a64.cc
 delete mode 100644 disas/libvixl/LICENCE
 delete mode 100644 disas/libvixl/README
 delete mode 100644 disas/libvixl/meson.build
 delete mode 100644 disas/libvixl/vixl/a64/decoder-a64.cc
 delete mode 100644 disas/libvixl/vixl/a64/disasm-a64.cc
 delete mode 100644 disas/libvixl/vixl/a64/instructions-a64.cc
 delete mode 100644 disas/libvixl/vixl/compiler-intrinsics.cc
 delete mode 100644 disas/libvixl/vixl/utils.cc
 create mode 100644 po/uk.po

-- 
2.31.1



^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PULL 00/14] (Mostly) build system changes for 2022-06-24
@ 2022-06-24  8:27 Paolo Bonzini
  2022-06-24  8:27 ` [PULL 13/14] meson.build: Require a recent version of libpng Paolo Bonzini
  0 siblings, 1 reply; 17+ messages in thread
From: Paolo Bonzini @ 2022-06-24  8:27 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 2b049d2c8dc01de750410f8f1a4eac498c04c723:

  Merge tag 'pull-aspeed-20220622' of https://github.com/legoater/qemu into staging (2022-06-22 07:27:06 -0700)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 72da35fec9a9ba91a5b2cb9ee00843a94fa9413d:

  accel: kvm: Fix memory leak in find_stats_descriptors (2022-06-24 10:19:17 +0200)

----------------------------------------------------------------
* fuzzing fixes
* fix cross compilation CFLAGS and compiler choice
* do not specify -bios option for tests/vm
* miscellaneous fixes

----------------------------------------------------------------
Alexander Bulekov (2):
      build: improve -fsanitize-coverage-allowlist check
      fuzz: only use generic-fuzz targets on oss-fuzz

Marc-André Lureau (1):
      audio/dbus: fix building

Miaoqian Lin (1):
      accel: kvm: Fix memory leak in find_stats_descriptors

Paolo Bonzini (9):
      tests/vm: do not specify -bios option
      pc-bios/optionrom: use -m16 unconditionally
      configure, pc-bios/optionrom: pass cross CFLAGS correctly
      configure, pc-bios/s390-ccw: pass cross CFLAGS correctly
      configure, pc-bios/vof: pass cross CFLAGS correctly
      configure: allow more host/target combos to use the host compiler
      configure: write EXTRA_CFLAGS for all sub-Makefiles
      tests/tcg: compile system emulation tests as freestanding
      build: try both native and cross compilers for linux-user tests

Thomas Huth (1):
      meson.build: Require a recent version of libpng

 accel/kvm/kvm-all.c                    |   1 +
 audio/meson.build                      |   2 +-
 configure                              | 188 ++++++++++++++++++++-------------
 meson.build                            |   7 +-
 pc-bios/optionrom/Makefile             |  15 +--
 pc-bios/optionrom/code16gcc.h          |   3 -
 pc-bios/s390-ccw/Makefile              |  20 ++--
 pc-bios/s390-ccw/netboot.mak           |   6 +-
 pc-bios/vof/Makefile                   |   8 +-
 scripts/oss-fuzz/build.sh              |   4 +-
 tests/tcg/Makefile.target              |   1 +
 tests/tcg/aarch64/system/pauth-3.c     |   2 +-
 tests/tcg/aarch64/system/semiconsole.c |   2 +-
 tests/tcg/aarch64/system/semiheap.c    |   2 +-
 tests/tcg/multiarch/system/memory.c    |   2 +-
 tests/vm/fedora                        |   1 -
 tests/vm/freebsd                       |   1 -
 tests/vm/netbsd                        |   1 -
 tests/vm/openbsd                       |   1 -
 19 files changed, 143 insertions(+), 124 deletions(-)
 delete mode 100644 pc-bios/optionrom/code16gcc.h
-- 
2.36.1



^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2022-07-05 16:54 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-05 10:38 [PULL 00/14] Testing and misc patches Thomas Huth
2022-07-05 10:38 ` [PULL 01/14] tests: fix test-cutils leaks Thomas Huth
2022-07-05 10:38 ` [PULL 02/14] tests/fp: Do not build softfloat3 tests if TCG is disabled Thomas Huth
2022-07-05 10:38 ` [PULL 03/14] gitlab: normalize indentation in edk2/opensbi rules Thomas Huth
2022-07-05 10:38 ` [PULL 04/14] gitlab: tweak comments in edk2/opensbi jobs Thomas Huth
2022-07-05 10:38 ` [PULL 05/14] gitlab: honour QEMU_CI variable " Thomas Huth
2022-07-05 10:38 ` [PULL 06/14] gitlab-ci: Extend timeout for ubuntu-20.04-s390x-all to 75m Thomas Huth
2022-07-05 10:38 ` [PULL 07/14] tests: wait max 120 seconds for migration test status changes Thomas Huth
2022-07-05 10:38 ` [PULL 08/14] tests: wait for migration completion before looking for STOP event Thomas Huth
2022-07-05 10:38 ` [PULL 09/14] tests: increase migration test converge downtime to 30 seconds Thomas Huth
2022-07-05 10:38 ` [PULL 10/14] tests: use consistent bandwidth/downtime limits in migration tests Thomas Huth
2022-07-05 10:38 ` [PULL 11/14] disas: Remove libvixl disassembler Thomas Huth
2022-07-05 10:38 ` [PULL 12/14] po: add ukrainian translation Thomas Huth
2022-07-05 10:38 ` [PULL 13/14] meson.build: Require a recent version of libpng Thomas Huth
2022-07-05 10:38 ` [PULL 14/14] include/qemu/host-utils: Remove unused code in the *_overflow wrappers Thomas Huth
2022-07-05 16:43 ` [PULL 00/14] Testing and misc patches Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2022-06-24  8:27 [PULL 00/14] (Mostly) build system changes for 2022-06-24 Paolo Bonzini
2022-06-24  8:27 ` [PULL 13/14] meson.build: Require a recent version of libpng Paolo Bonzini

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).