[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/22] QTest patches for 2024-12-12
From: |
Fabiano Rosas |
Subject: |
[PULL 00/22] QTest patches for 2024-12-12 |
Date: |
Thu, 12 Dec 2024 12:09:27 -0300 |
The following changes since commit a5ba0a7e4e150d1350a041f0d0ef9ca6c8d7c307:
Merge tag 'pull-aspeed-20241211' of https://github.com/legoater/qemu into
staging (2024-12-11 15:16:47 +0000)
are available in the Git repository at:
https://gitlab.com/farosas/qemu.git tags/qtest-20241212-pull-request
for you to fetch changes up to de8bc62cc4871fa97d1891ebb96e782b0c75b56a:
tests/qtest/migration: Split validation tests + misc (2024-12-12 10:25:42
-0300)
----------------------------------------------------------------
Qtest pull request
- TIMEOUT_MULTIPLIER setting to allow tests to take longer when asan is enabled
- New qtest_system_reset() wrapper to properly wait for a system reset
- Split of migration-test.c into multiple files under qtest/migration/
----------------------------------------------------------------
Dmitry Frolov (1):
tests/qtest: add TIMEOUT_MULTIPLIER
Fabiano Rosas (17):
tests/qtest/migration: Standardize hook names
tests/qtest/migration: Stop calling everything "test"
tests/migration: Disambiguate guestperf vs. a-b
tests/qtest/migration: Move bootfile code to its own file
tests/qtest/migration: Move qmp helpers to a separate file
tests/qtest/migration: Rename migration-helpers.c
tests/qtest/migration: Move ufd_version_check to utils
tests/qtest/migration: Move kvm_dirty_ring_supported to utils
tests/qtest/migration: Isolate test initialization
tests/qtest/migration: Move common test code
tests/qtest/migration: Split TLS tests from migration-test.c
tests/qtest/migration: Split compression tests from migration-test.c
tests/qtest/migration: Split postcopy tests
tests/qtest/migration: Split file tests
tests/qtest/migration: Split precopy tests
tests/qtest/migration: Split CPR tests
tests/qtest/migration: Split validation tests + misc
Nicholas Piggin (1):
tests/qtest/migration-test: Fix and enable test_ignore_shared
Peter Maydell (3):
tests/qtest: Add qtest_system_reset() utility function
tests/qtest: Use qtest_system_reset() instead of open-coded versions
tests/qtest: Use qtest_system_reset_nowait() where appropriate
MAINTAINERS | 5 +-
scripts/mtest2make.py | 2 +-
tests/meson.build | 2 +-
.../guestperf-batch.py | 0
.../guestperf-plot.py | 0
.../guestperf.py | 0
.../guestperf/__init__.py | 0
.../guestperf/comparison.py | 0
.../guestperf/engine.py | 0
.../guestperf/hardware.py | 0
.../guestperf/plot.py | 0
.../guestperf/progress.py | 0
.../guestperf/report.py | 0
.../guestperf/scenario.py | 0
.../guestperf/shell.py | 3 +-
.../guestperf/timings.py | 0
.../initrd-stress.sh | 0
.../meson.build | 0
.../{migration => migration-stress}/stress.c | 0
tests/qtest/bios-tables-test.c | 4 +-
tests/qtest/boot-order-test.c | 7 +-
tests/qtest/device-plug-test.c | 11 +-
tests/qtest/drive_del-test.c | 7 +-
tests/qtest/hd-geo-test.c | 9 +-
tests/qtest/libqtest.c | 16 +
tests/qtest/libqtest.h | 25 +
tests/qtest/meson.build | 27 +-
tests/qtest/migration-test.c | 4031 +----------------
tests/{ => qtest}/migration/Makefile | 0
tests/{ => qtest}/migration/aarch64/Makefile | 0
.../migration/aarch64/a-b-kernel.S | 0
.../migration/aarch64/a-b-kernel.h | 0
tests/qtest/migration/bootfile.c | 70 +
.../migration/bootfile.h} | 9 +-
tests/qtest/migration/compression-tests.c | 239 +
tests/qtest/migration/cpr-tests.c | 58 +
tests/qtest/migration/file-tests.c | 338 ++
tests/qtest/migration/framework.c | 971 ++++
tests/qtest/migration/framework.h | 230 +
tests/{ => qtest}/migration/i386/Makefile | 0
.../migration/i386/a-b-bootblock.S | 0
.../migration/i386/a-b-bootblock.h | 0
.../migration-qmp.c} | 567 ++-
tests/qtest/migration/migration-qmp.h | 46 +
tests/qtest/migration/migration-util.c | 362 ++
.../migration-util.h} | 27 +-
tests/qtest/migration/misc-tests.c | 282 ++
tests/qtest/migration/postcopy-tests.c | 106 +
tests/{ => qtest}/migration/ppc64/Makefile | 0
.../{ => qtest}/migration/ppc64/a-b-kernel.S | 0
.../{ => qtest}/migration/ppc64/a-b-kernel.h | 0
tests/qtest/migration/precopy-tests.c | 1007 ++++
tests/{ => qtest}/migration/s390x/Makefile | 0
tests/{ => qtest}/migration/s390x/a-b-bios.c | 0
tests/{ => qtest}/migration/s390x/a-b-bios.h | 0
tests/qtest/migration/tls-tests.c | 791 ++++
tests/qtest/q35-test.c | 12 +-
tests/qtest/qos-test.c | 3 +-
tests/qtest/stm32l4x5_gpio-test.c | 10 +-
tests/qtest/stm32l4x5_syscfg-test.c | 12 +-
tests/qtest/virtio-net-failover.c | 3 +-
61 files changed, 4869 insertions(+), 4423 deletions(-)
rename tests/{migration => migration-stress}/guestperf-batch.py (100%)
rename tests/{migration => migration-stress}/guestperf-plot.py (100%)
rename tests/{migration => migration-stress}/guestperf.py (100%)
rename tests/{migration => migration-stress}/guestperf/__init__.py (100%)
rename tests/{migration => migration-stress}/guestperf/comparison.py (100%)
rename tests/{migration => migration-stress}/guestperf/engine.py (100%)
rename tests/{migration => migration-stress}/guestperf/hardware.py (100%)
rename tests/{migration => migration-stress}/guestperf/plot.py (100%)
rename tests/{migration => migration-stress}/guestperf/progress.py (100%)
rename tests/{migration => migration-stress}/guestperf/report.py (100%)
rename tests/{migration => migration-stress}/guestperf/scenario.py (100%)
rename tests/{migration => migration-stress}/guestperf/shell.py (98%)
rename tests/{migration => migration-stress}/guestperf/timings.py (100%)
rename tests/{migration => migration-stress}/initrd-stress.sh (100%)
rename tests/{migration => migration-stress}/meson.build (100%)
rename tests/{migration => migration-stress}/stress.c (100%)
rename tests/{ => qtest}/migration/Makefile (100%)
rename tests/{ => qtest}/migration/aarch64/Makefile (100%)
rename tests/{ => qtest}/migration/aarch64/a-b-kernel.S (100%)
rename tests/{ => qtest}/migration/aarch64/a-b-kernel.h (100%)
create mode 100644 tests/qtest/migration/bootfile.c
rename tests/{migration/migration-test.h => qtest/migration/bootfile.h} (85%)
create mode 100644 tests/qtest/migration/compression-tests.c
create mode 100644 tests/qtest/migration/cpr-tests.c
create mode 100644 tests/qtest/migration/file-tests.c
create mode 100644 tests/qtest/migration/framework.c
create mode 100644 tests/qtest/migration/framework.h
rename tests/{ => qtest}/migration/i386/Makefile (100%)
rename tests/{ => qtest}/migration/i386/a-b-bootblock.S (100%)
rename tests/{ => qtest}/migration/i386/a-b-bootblock.h (100%)
rename tests/qtest/{migration-helpers.c => migration/migration-qmp.c} (51%)
create mode 100644 tests/qtest/migration/migration-qmp.h
create mode 100644 tests/qtest/migration/migration-util.c
rename tests/qtest/{migration-helpers.h => migration/migration-util.h} (67%)
create mode 100644 tests/qtest/migration/misc-tests.c
create mode 100644 tests/qtest/migration/postcopy-tests.c
rename tests/{ => qtest}/migration/ppc64/Makefile (100%)
rename tests/{ => qtest}/migration/ppc64/a-b-kernel.S (100%)
rename tests/{ => qtest}/migration/ppc64/a-b-kernel.h (100%)
create mode 100644 tests/qtest/migration/precopy-tests.c
rename tests/{ => qtest}/migration/s390x/Makefile (100%)
rename tests/{ => qtest}/migration/s390x/a-b-bios.c (100%)
rename tests/{ => qtest}/migration/s390x/a-b-bios.h (100%)
create mode 100644 tests/qtest/migration/tls-tests.c
--
2.35.3
- [PULL 00/22] QTest patches for 2024-12-12,
Fabiano Rosas <=
- [PULL 02/22] tests/qtest: Add qtest_system_reset() utility function, Fabiano Rosas, 2024/12/12
- [PULL 01/22] tests/qtest: add TIMEOUT_MULTIPLIER, Fabiano Rosas, 2024/12/12
- [PULL 03/22] tests/qtest: Use qtest_system_reset() instead of open-coded versions, Fabiano Rosas, 2024/12/12
- [PULL 04/22] tests/qtest: Use qtest_system_reset_nowait() where appropriate, Fabiano Rosas, 2024/12/12
- [PULL 05/22] tests/qtest/migration: Standardize hook names, Fabiano Rosas, 2024/12/12
- [PULL 06/22] tests/qtest/migration: Stop calling everything "test", Fabiano Rosas, 2024/12/12
- [PULL 07/22] tests/migration: Disambiguate guestperf vs. a-b, Fabiano Rosas, 2024/12/12
- [PULL 08/22] tests/qtest/migration: Move bootfile code to its own file, Fabiano Rosas, 2024/12/12
- [PULL 09/22] tests/qtest/migration: Move qmp helpers to a separate file, Fabiano Rosas, 2024/12/12
- [PULL 10/22] tests/qtest/migration: Rename migration-helpers.c, Fabiano Rosas, 2024/12/12