qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/22] Functional tests and s390x patches for the softfreeze
@ 2025-11-03 10:57 Thomas Huth
  2025-11-03 10:57 ` [PULL 01/22] scripts/device-crash-test: fix spurious EOFError messages Thomas Huth
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Thomas Huth @ 2025-11-03 10:57 UTC (permalink / raw)
  To: qemu-devel; +Cc: Richard Henderson

 Hi Richard!

The following changes since commit 53b41bb78950912ba2d9809eef6b45e4df30c647:

  Merge tag 'pull-target-arm-20251031' of https://gitlab.com/pm215/qemu into staging (2025-11-01 10:52:48 +0100)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2025-11-03

for you to fetch changes up to 0408c61e27aca56c2d40aeb6ca0e5c5f8b8c3845:

  tests/tcg/s390x: Test SET CLOCK COMPARATOR (2025-11-03 08:27:59 +0100)

----------------------------------------------------------------
* Fix spurious EOFError messages from the device-crash-test script
* Fix various issues in the functional tests that pylint complained about
* Improve logging information in the functional tests
* Fix issue in the s390x clock-comparator code
* Use address generation for register branch targets on s390x

----------------------------------------------------------------
Daniel P. Berrangé (2):
      tests/functional: include logger name and function in messages
      tests/functional: include the lower level QMP log messages

Ilya Leoshkevich (4):
      target/s390x: Fix missing interrupts for small CKC values
      target/s390x: Fix missing clock-comparator interrupts after reset
      target/s390x: Use address generation for register branch targets
      tests/tcg/s390x: Test SET CLOCK COMPARATOR

John Snow (1):
      scripts/device-crash-test: fix spurious EOFError messages

Philippe Mathieu-Daudé (1):
      hw/s390x: Use memory_region_size()

Thomas Huth (12):
      tests/functional: Fix problems in asset.py reported by pylint
      tests/functional: Fix problems in decorators.py reported by pylint
      tests/functional: Fix problems in linuxkernel.py reported by pylint
      tests/functional: Fix problems in uncompress.py reported by pylint
      tests/functional: Fix problems in utils.py reported by pylint
      tests/functional/arm/test_aspeed_ast1030: Remove unused import
      tests/functional/migration: Fix bad indentation
      tests/functional/ppc64/test_mac99: Fix style issues reported by pylint
      tests/functional/rx/test_gdbsim: Remove unused variables
      tests/functional/x86_64/test_acpi_bits: Silence warnings reported by pylint
      tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint
      tests/functional/ppc64: Fix class names to silence pylint warnings

Vladimir Sementsov-Ogievskiy (2):
      tests/functional/.../testcase.py: better socketdir cleanup
      MAINTAINERS: fix functional tests section

 MAINTAINERS                                    |   1 +
 hw/s390x/s390-pci-inst.c                       |   2 +-
 target/s390x/tcg/mem_helper.c                  |  11 +-
 target/s390x/tcg/misc_helper.c                 |  12 +-
 target/s390x/tcg/translate.c                   |  11 +-
 scripts/device-crash-test                      |   2 +-
 tests/functional/arm/test_aspeed_ast1030.py    |   3 +-
 tests/functional/migration.py                  |   4 +-
 tests/functional/ppc/test_74xx.py              |   2 +-
 tests/functional/ppc/test_sam460ex.py          |   5 +-
 tests/functional/ppc64/test_mac99.py           |   8 +-
 tests/functional/ppc64/test_powernv.py         |   2 +-
 tests/functional/ppc64/test_pseries.py         |   2 +-
 tests/functional/ppc64/test_reverse_debug.py   |   2 +-
 tests/functional/qemu_test/asset.py            |  24 ++--
 tests/functional/qemu_test/decorators.py       | 176 ++++++++++++-------------
 tests/functional/qemu_test/linuxkernel.py      |   6 +-
 tests/functional/qemu_test/testcase.py         |   8 +-
 tests/functional/qemu_test/uncompress.py       |  40 +++---
 tests/functional/qemu_test/utils.py            |  22 ++--
 tests/functional/rx/test_gdbsim.py             |   6 +-
 tests/functional/x86_64/test_acpi_bits.py      |   8 +-
 tests/functional/x86_64/test_virtio_balloon.py |   8 +-
 tests/tcg/s390x/Makefile.softmmu-target        |   1 +
 tests/tcg/s390x/sckc.S                         |  63 +++++++++
 25 files changed, 256 insertions(+), 173 deletions(-)
 create mode 100644 tests/tcg/s390x/sckc.S



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

end of thread, other threads:[~2025-11-04 13:57 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-03 10:57 [PULL 00/22] Functional tests and s390x patches for the softfreeze Thomas Huth
2025-11-03 10:57 ` [PULL 01/22] scripts/device-crash-test: fix spurious EOFError messages Thomas Huth
2025-11-03 10:57 ` [PULL 02/22] tests/functional: Fix problems in asset.py reported by pylint Thomas Huth
2025-11-03 10:58 ` [PULL 03/22] tests/functional: Fix problems in decorators.py " Thomas Huth
2025-11-03 10:58 ` [PULL 04/22] tests/functional: Fix problems in linuxkernel.py " Thomas Huth
2025-11-03 10:58 ` [PULL 05/22] tests/functional: Fix problems in uncompress.py " Thomas Huth
2025-11-03 10:58 ` [PULL 06/22] tests/functional: Fix problems in utils.py " Thomas Huth
2025-11-03 10:58 ` [PULL 07/22] tests/functional/arm/test_aspeed_ast1030: Remove unused import Thomas Huth
2025-11-03 10:58 ` [PULL 08/22] tests/functional/.../testcase.py: better socketdir cleanup Thomas Huth
2025-11-03 10:58 ` [PULL 09/22] MAINTAINERS: fix functional tests section Thomas Huth
2025-11-03 10:58 ` [PULL 10/22] tests/functional/migration: Fix bad indentation Thomas Huth
2025-11-03 10:58 ` [PULL 11/22] tests/functional/ppc64/test_mac99: Fix style issues reported by pylint Thomas Huth
2025-11-03 10:58 ` [PULL 12/22] tests/functional/rx/test_gdbsim: Remove unused variables Thomas Huth
2025-11-03 10:58 ` [PULL 13/22] tests/functional/x86_64/test_acpi_bits: Silence warnings reported by pylint Thomas Huth
2025-11-03 10:58 ` [PULL 14/22] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint Thomas Huth
2025-11-03 10:58 ` [PULL 15/22] tests/functional/ppc64: Fix class names to silence pylint warnings Thomas Huth
2025-11-03 10:58 ` [PULL 16/22] tests/functional: include logger name and function in messages Thomas Huth
2025-11-03 10:58 ` [PULL 17/22] tests/functional: include the lower level QMP log messages Thomas Huth
2025-11-03 10:58 ` [PULL 18/22] hw/s390x: Use memory_region_size() Thomas Huth
2025-11-03 10:58 ` [PULL 19/22] target/s390x: Fix missing interrupts for small CKC values Thomas Huth
2025-11-03 10:58 ` [PULL 20/22] target/s390x: Fix missing clock-comparator interrupts after reset Thomas Huth
2025-11-03 10:58 ` [PULL 21/22] target/s390x: Use address generation for register branch targets Thomas Huth
2025-11-03 10:58 ` [PULL 22/22] tests/tcg/s390x: Test SET CLOCK COMPARATOR Thomas Huth
2025-11-04 13:57 ` [PULL 00/22] Functional tests and s390x patches for the 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).