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 <kwolf@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20250224214058.205889-1-thuth@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
Thomas Huth 2025-02-24 22:40:58 +01:00 committed by Kevin Wolf
parent f76d3bee75
commit 71e1369bad

View File

@ -22,7 +22,7 @@ import iotests
from iotests import filter_qemu_io, filter_qtest 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_protocols=['file'],
supported_platforms=['linux']) supported_platforms=['linux'])