diff options
author | Thomas Huth <thuth@redhat.com> | 2025-02-24 22:40:58 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2025-03-13 17:57:23 +0100 |
commit | 71e1369bad01d441113ede02334175647275652d (patch) | |
tree | 1ca6f62ff68ad9b99d1d18dea63369759fac15ec | |
parent | f76d3bee754a2f8d73373d5959dc983169a93eee (diff) | |
download | qemu-71e1369bad01d441113ede02334175647275652d.zip qemu-71e1369bad01d441113ede02334175647275652d.tar.gz qemu-71e1369bad01d441113ede02334175647275652d.tar.bz2 |
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>
-rwxr-xr-x | tests/qemu-iotests/tests/qsd-migrate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/tests/qsd-migrate b/tests/qemu-iotests/tests/qsd-migrate index de17562..a4c6592 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']) |