qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/16] qtest patches (and one unit test and one avocado fix)
@ 2022-10-12 14:33 Thomas Huth
  2022-10-12 14:33 ` [PULL 01/16] qtest: "-display none" is set in qtest_init() Thomas Huth
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Thomas Huth @ 2022-10-12 14:33 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel

 Hi Stefan!

The following changes since commit 1dcdc92c72af5311666df64f5f04d6600af262ed:

  Merge tag 'pull-hex-20221003' of https://github.com/quic/qemu into staging (2022-10-05 10:17:32 -0400)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2022-10-12

for you to fetch changes up to 04c92d2654b130fd29597a57ae2d71e70895bf2b:

  tests/unit/test-image-locking: Fix handling of temporary files (2022-10-12 12:48:53 +0200)

----------------------------------------------------------------
* Rework of qtests to support hot plugging tests on q35
* New VNC qtest
* Fixes related to temporary file handling in the tests
* Use signal() instead of sigaction() since the latter does not work on Windows
* Some other small clean-ups

----------------------------------------------------------------
Bin Meng (2):
      tests/qtest: migration-test: Avoid using hardcoded /tmp
      tests/qtest: libqtest: Install signal handler via signal()

Juan Quintela (1):
      qtest: "-display none" is set in qtest_init()

Marc-André Lureau (1):
      qtest: start a VNC test

Michael Labiuk (9):
      tests/x86: add helper qtest_qmp_device_del_send()
      tests/x86: Add subtest with 'q35' machine type to device-plug-test
      tests/x86: Refactor hot unplug hd-geo-test
      tests/x86: Add 'q35' machine type to override-tests in hd-geo-test
      tests/x86: Add 'q35' machine type to hotplug hd-geo-test
      tests/x86: Fix comment typo in drive_del-test
      tests/x86: replace snprint() by g_strdup_printf() in drive_del-test
      tests/x86: Add 'q35' machine type to drive_del-test
      tests/x86: Add 'q35' machine type to ivshmem-test

Peter Maydell (1):
      tests/avocado: Add missing require_netdev('user') checks

Thomas Huth (1):
      tests/unit/test-image-locking: Fix handling of temporary files

dinglimin (1):
      tests/migration: remove the unused local variable

 tests/qtest/libqtest.h              |  10 ++
 tests/qtest/bios-tables-test.c      |   2 +-
 tests/qtest/device-plug-test.c      |  56 ++++++--
 tests/qtest/drive_del-test.c        | 125 +++++++++++++++--
 tests/qtest/fuzz-lsi53c895a-test.c  |   2 +-
 tests/qtest/fuzz-megasas-test.c     |   2 +-
 tests/qtest/fuzz-sb16-test.c        |   6 +-
 tests/qtest/fuzz-sdcard-test.c      |   6 +-
 tests/qtest/fuzz-virtio-scsi-test.c |   2 +-
 tests/qtest/fuzz-xlnx-dp-test.c     |   2 +-
 tests/qtest/hd-geo-test.c           | 273 +++++++++++++++++++++++++++---------
 tests/qtest/ivshmem-test.c          |  18 +++
 tests/qtest/libqos/pci-pc.c         |   8 +-
 tests/qtest/libqtest.c              |  30 ++--
 tests/qtest/migration-test.c        |  10 +-
 tests/qtest/vnc-display-test.c      | 103 ++++++++++++++
 tests/unit/test-image-locking.c     |   6 +-
 tests/avocado/boot_linux_console.py |   4 +
 tests/avocado/machine_aspeed.py     |   3 +
 tests/avocado/ppc_bamboo.py         |   1 +
 tests/migration/guestperf/engine.py |   1 -
 tests/qtest/meson.build             |   8 +-
 22 files changed, 544 insertions(+), 134 deletions(-)
 create mode 100644 tests/qtest/vnc-display-test.c



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

end of thread, other threads:[~2022-10-13 20:33 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-12 14:33 [PULL 00/16] qtest patches (and one unit test and one avocado fix) Thomas Huth
2022-10-12 14:33 ` [PULL 01/16] qtest: "-display none" is set in qtest_init() Thomas Huth
2022-10-12 14:33 ` [PULL 02/16] tests/migration: remove the unused local variable Thomas Huth
2022-10-12 14:33 ` [PULL 03/16] tests/x86: add helper qtest_qmp_device_del_send() Thomas Huth
2022-10-12 14:33 ` [PULL 04/16] tests/x86: Add subtest with 'q35' machine type to device-plug-test Thomas Huth
2022-10-12 14:33 ` [PULL 05/16] tests/x86: Refactor hot unplug hd-geo-test Thomas Huth
2022-10-12 14:33 ` [PULL 06/16] tests/x86: Add 'q35' machine type to override-tests in hd-geo-test Thomas Huth
2022-10-12 14:33 ` [PULL 07/16] tests/x86: Add 'q35' machine type to hotplug hd-geo-test Thomas Huth
2022-10-12 14:33 ` [PULL 08/16] tests/x86: Fix comment typo in drive_del-test Thomas Huth
2022-10-12 14:33 ` [PULL 09/16] tests/x86: replace snprint() by g_strdup_printf() " Thomas Huth
2022-10-12 14:33 ` [PULL 10/16] tests/x86: Add 'q35' machine type to drive_del-test Thomas Huth
2022-10-12 14:33 ` [PULL 11/16] tests/x86: Add 'q35' machine type to ivshmem-test Thomas Huth
2022-10-12 14:33 ` [PULL 12/16] tests/avocado: Add missing require_netdev('user') checks Thomas Huth
2022-10-12 14:33 ` [PULL 13/16] qtest: start a VNC test Thomas Huth
2022-10-12 14:33 ` [PULL 14/16] tests/qtest: migration-test: Avoid using hardcoded /tmp Thomas Huth
2022-10-12 14:33 ` [PULL 15/16] tests/qtest: libqtest: Install signal handler via signal() Thomas Huth
2022-10-12 14:33 ` [PULL 16/16] tests/unit/test-image-locking: Fix handling of temporary files Thomas Huth
2022-10-13 20:29 ` [PULL 00/16] qtest patches (and one unit test and one avocado fix) Stefan Hajnoczi

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