qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/12] QTests, Avocado and s390x fixes for 9.1 softfreeze
@ 2024-07-22 12:00 Thomas Huth
  2024-07-22 12:00 ` [PULL 01/12] tests/avocado/boot_xen.py: merge base classes Thomas Huth
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Thomas Huth @ 2024-07-22 12:00 UTC (permalink / raw)
  To: Richard Henderson; +Cc: qemu-devel

 Hi Richard!

The following changes since commit a7ddb48bd1363c8bcdf42776d320289c42191f01:

  Merge tag 'pull-aspeed-20240721' of https://github.com/legoater/qemu into staging (2024-07-22 07:52:05 +1000)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2024-07-22

for you to fetch changes up to eed0e8ffa38f0695c0519508f6e4f5a3297cbd67:

  target/s390x: filter deprecated properties based on model expansion type (2024-07-22 13:56:11 +0200)

----------------------------------------------------------------
* Minor clean-ups and fixes for the qtests and Avocado tests
* Fix crash that happens when introspecting scsi-block on older machine types
* s390x: filter deprecated properties based on model expansion type

----------------------------------------------------------------
Cleber Rosa (3):
      tests/avocado/boot_xen.py: merge base classes
      tests/avocado/boot_xen.py: unify tags
      tests/avocado/boot_xen.py: use class attribute

Collin L. Walling (1):
      target/s390x: filter deprecated properties based on model expansion type

Cédric Le Goater (1):
      tests/avocado/machine_aspeed.py: Increase timeout for TPM test

Igor Mammedov (1):
      tests: increase timeout per instance of bios-tables-test

Philippe Mathieu-Daudé (1):
      tests/avocado: Allow overwriting AVOCADO_SHOW env variable

Thomas Huth (4):
      tests/avocado: Move LinuxTest related code into a separate file
      tests/avocado/mem-addr-space-check: Remove unused "import signal"
      tests/avocado: Remove the remainders of the virtiofs_submounts test
      hw: Fix crash that happens when introspecting scsi-block on older machine types

Yao Xingtao (1):
      qtest/fuzz: make range overlap check more readable

 qapi/machine-target.json                           |   5 +-
 hw/core/machine.c                                  |   3 +-
 target/s390x/cpu_models_sysemu.c                   |  16 +-
 tests/qtest/fuzz/generic_fuzz.c                    |   3 +-
 tests/Makefile.include                             |   2 +-
 tests/avocado/avocado_qemu/__init__.py             | 239 +------------------
 tests/avocado/avocado_qemu/linuxtest.py            | 253 +++++++++++++++++++++
 tests/avocado/boot_linux.py                        |   3 +-
 tests/avocado/boot_xen.py                          |  34 +--
 tests/avocado/hotplug_blk.py                       |   2 +-
 tests/avocado/hotplug_cpu.py                       |   2 +-
 tests/avocado/intel_iommu.py                       |   2 +-
 tests/avocado/machine_aspeed.py                    |   2 +-
 tests/avocado/mem-addr-space-check.py              |   1 -
 tests/avocado/replay_linux.py                      |   2 +-
 tests/avocado/smmu.py                              |   3 +-
 .../avocado/virtiofs_submounts.py.data/cleanup.sh  |  46 ----
 .../virtiofs_submounts.py.data/guest-cleanup.sh    |  30 ---
 tests/avocado/virtiofs_submounts.py.data/guest.sh  | 138 -----------
 tests/avocado/virtiofs_submounts.py.data/host.sh   | 127 -----------
 tests/qtest/meson.build                            |   2 +-
 21 files changed, 288 insertions(+), 627 deletions(-)
 create mode 100644 tests/avocado/avocado_qemu/linuxtest.py
 delete mode 100644 tests/avocado/virtiofs_submounts.py.data/cleanup.sh
 delete mode 100644 tests/avocado/virtiofs_submounts.py.data/guest-cleanup.sh
 delete mode 100644 tests/avocado/virtiofs_submounts.py.data/guest.sh
 delete mode 100644 tests/avocado/virtiofs_submounts.py.data/host.sh



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

end of thread, other threads:[~2024-07-23  2:14 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-22 12:00 [PULL 00/12] QTests, Avocado and s390x fixes for 9.1 softfreeze Thomas Huth
2024-07-22 12:00 ` [PULL 01/12] tests/avocado/boot_xen.py: merge base classes Thomas Huth
2024-07-22 12:00 ` [PULL 02/12] tests/avocado/boot_xen.py: unify tags Thomas Huth
2024-07-22 12:00 ` [PULL 03/12] tests/avocado/boot_xen.py: use class attribute Thomas Huth
2024-07-22 12:00 ` [PULL 04/12] tests/avocado: Allow overwriting AVOCADO_SHOW env variable Thomas Huth
2024-07-22 12:00 ` [PULL 05/12] tests/avocado: Move LinuxTest related code into a separate file Thomas Huth
2024-07-22 12:00 ` [PULL 06/12] tests/avocado/mem-addr-space-check: Remove unused "import signal" Thomas Huth
2024-07-22 12:00 ` [PULL 07/12] tests/avocado: Remove the remainders of the virtiofs_submounts test Thomas Huth
2024-07-22 12:00 ` [PULL 08/12] tests/avocado/machine_aspeed.py: Increase timeout for TPM test Thomas Huth
2024-07-22 12:00 ` [PULL 09/12] hw: Fix crash that happens when introspecting scsi-block on older machine types Thomas Huth
2024-07-22 12:00 ` [PULL 10/12] qtest/fuzz: make range overlap check more readable Thomas Huth
2024-07-22 12:00 ` [PULL 11/12] tests: increase timeout per instance of bios-tables-test Thomas Huth
2024-07-22 12:00 ` [PULL 12/12] target/s390x: filter deprecated properties based on model expansion type Thomas Huth
2024-07-23  2:14 ` [PULL 00/12] QTests, Avocado and s390x fixes for 9.1 softfreeze Richard Henderson

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