qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/15] CPU-related test updates
@ 2024-06-12 13:20 Thomas Huth
  2024-06-12 13:20 ` [PULL 01/15] tests/avocado: Update LoongArch bios file Thomas Huth
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Thomas Huth @ 2024-06-12 13:20 UTC (permalink / raw)
  To: qemu-devel, Richard Henderson

The following changes since commit 80e8f0602168f451a93e71cbb1d59e93d745e62e:

  Merge tag 'bsd-user-misc-2024q2-pull-request' of gitlab.com:bsdimp/qemu into staging (2024-06-09 11:21:55 -0700)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2024-06-12

for you to fetch changes up to 26a09ead7351f117ae780781b347f014da03c20b:

  tests/tcg/s390x: Allow specifying extra QEMU options on the command line (2024-06-12 12:12:28 +0200)

----------------------------------------------------------------
* Fix loongarch64 avocado test
* Make qtests more flexible with regards to non-available CPU models
* Improvements for the test-smp-parse unit test

----------------------------------------------------------------
Ani Sinha (3):
      qtest/x86/numa-test: do not use the obsolete 'pentium' cpu
      tests/qtest/libqtest: add qtest_has_cpu_model() api
      tests/qtest/x86: check for availability of older cpu models before running tests

Ilya Leoshkevich (1):
      tests/tcg/s390x: Allow specifying extra QEMU options on the command line

Song Gao (1):
      tests/avocado: Update LoongArch bios file

Zhao Liu (8):
      tests/unit/test-smp-parse: Fix comments of drawers and books case
      tests/unit/test-smp-parse: Fix comment of parameters=1 case
      tests/unit/test-smp-parse: Fix an invalid topology case
      tests/unit/test-smp-parse: Use default parameters=0 when not set in -smp
      tests/unit/test-smp-parse: Make test cases aware of module level
      tests/unit/test-smp-parse: Test "modules" parameter in -smp
      tests/unit/test-smp-parse: Test "modules" and "dies" combination case
      tests/unit/test-smp-parse: Test the full 8-levels topology hierarchy

Zhenwei Pi (2):
      meson: Remove libibumad dependence
      test: Remove libibumad dependence

 meson.build                                        |   4 +-
 tests/qtest/libqtest.h                             |   8 +
 tests/qtest/libqtest.c                             |  83 +++++
 tests/qtest/numa-test.c                            |   3 +-
 tests/qtest/test-x86-cpuid-compat.c                | 170 ++++++----
 tests/unit/test-smp-parse.c                        | 373 +++++++++++++++++----
 scripts/ci/setup/ubuntu/ubuntu-2204-aarch64.yaml   |   1 -
 scripts/ci/setup/ubuntu/ubuntu-2204-s390x.yaml     |   1 -
 tests/avocado/machine_loongarch.py                 |   8 +-
 tests/docker/dockerfiles/debian-amd64-cross.docker |   1 -
 tests/docker/dockerfiles/debian-arm64-cross.docker |   1 -
 tests/docker/dockerfiles/debian-armel-cross.docker |   1 -
 tests/docker/dockerfiles/debian-armhf-cross.docker |   1 -
 tests/docker/dockerfiles/debian-i686-cross.docker  |   1 -
 .../dockerfiles/debian-mips64el-cross.docker       |   1 -
 .../docker/dockerfiles/debian-mipsel-cross.docker  |   1 -
 .../docker/dockerfiles/debian-ppc64el-cross.docker |   1 -
 tests/docker/dockerfiles/debian-s390x-cross.docker |   1 -
 tests/docker/dockerfiles/debian.docker             |   1 -
 tests/docker/dockerfiles/ubuntu2204.docker         |   1 -
 tests/lcitool/projects/qemu.yml                    |   1 -
 tests/tcg/s390x/Makefile.softmmu-target            |   2 +-
 22 files changed, 518 insertions(+), 147 deletions(-)



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

end of thread, other threads:[~2024-06-14  4:05 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-12 13:20 [PULL 00/15] CPU-related test updates Thomas Huth
2024-06-12 13:20 ` [PULL 01/15] tests/avocado: Update LoongArch bios file Thomas Huth
2024-06-12 13:20 ` [PULL 02/15] qtest/x86/numa-test: do not use the obsolete 'pentium' cpu Thomas Huth
2024-06-12 13:20 ` [PULL 03/15] tests/qtest/libqtest: add qtest_has_cpu_model() api Thomas Huth
2024-06-12 13:20 ` [PULL 04/15] tests/qtest/x86: check for availability of older cpu models before running tests Thomas Huth
2024-06-12 13:20 ` [PULL 05/15] meson: Remove libibumad dependence Thomas Huth
2024-06-12 13:20 ` [PULL 06/15] test: " Thomas Huth
2024-06-12 13:20 ` [PULL 07/15] tests/unit/test-smp-parse: Fix comments of drawers and books case Thomas Huth
2024-06-12 13:20 ` [PULL 08/15] tests/unit/test-smp-parse: Fix comment of parameters=1 case Thomas Huth
2024-06-12 13:20 ` [PULL 09/15] tests/unit/test-smp-parse: Fix an invalid topology case Thomas Huth
2024-06-12 13:20 ` [PULL 10/15] tests/unit/test-smp-parse: Use default parameters=0 when not set in -smp Thomas Huth
2024-06-12 13:20 ` [PULL 11/15] tests/unit/test-smp-parse: Make test cases aware of module level Thomas Huth
2024-06-12 13:20 ` [PULL 12/15] tests/unit/test-smp-parse: Test "modules" parameter in -smp Thomas Huth
2024-06-12 13:20 ` [PULL 13/15] tests/unit/test-smp-parse: Test "modules" and "dies" combination case Thomas Huth
2024-06-12 13:20 ` [PULL 14/15] tests/unit/test-smp-parse: Test the full 8-levels topology hierarchy Thomas Huth
2024-06-12 13:20 ` [PULL 15/15] tests/tcg/s390x: Allow specifying extra QEMU options on the command line Thomas Huth
2024-06-14  3:59 ` [PULL 00/15] CPU-related test updates 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).