From: Thomas Huth Date: Mon, 24 Feb 2025 21:40:58 +0000 (+0100) Subject: iotests: Limit qsd-migrate to working formats X-Git-Tag: v10.0.0-rc0~6^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71e1369bad01d441113ede02334175647275652d;p=thirdparty%2Fqemu.git iotests: Limit qsd-migrate to working formats qsd-migrate is currently only working for raw, qcow2 and qed. Other formats are failing, e.g. because they don't support migration. Thus let's limit this test to the three usable formats now. Suggested-by: Kevin Wolf Signed-off-by: Thomas Huth Message-ID: <20250224214058.205889-1-thuth@redhat.com> Reviewed-by: Kevin Wolf Signed-off-by: Kevin Wolf --- diff --git a/tests/qemu-iotests/tests/qsd-migrate b/tests/qemu-iotests/tests/qsd-migrate index de17562cb0..a4c6592420 100755 --- a/tests/qemu-iotests/tests/qsd-migrate +++ b/tests/qemu-iotests/tests/qsd-migrate @@ -22,7 +22,7 @@ import iotests from iotests import filter_qemu_io, filter_qtest -iotests.script_initialize(supported_fmts=['generic'], +iotests.script_initialize(supported_fmts=['qcow2', 'qed', 'raw'], supported_protocols=['file'], supported_platforms=['linux'])