[PATCH] iotests: Limit qsd-migrate to working formats

Thomas Huth posted 1 patch 11 months, 2 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20250224214058.205889-1-thuth@redhat.com
Maintainers: Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>
tests/qemu-iotests/tests/qsd-migrate | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] iotests: Limit qsd-migrate to working formats
Posted by Thomas Huth 11 months, 2 weeks ago
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>
---
 tests/qemu-iotests/tests/qsd-migrate | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/qemu-iotests/tests/qsd-migrate b/tests/qemu-iotests/tests/qsd-migrate
index de17562cb06..a4c6592420c 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'])
 
-- 
2.48.1
Re: [PATCH] iotests: Limit qsd-migrate to working formats
Posted by Kevin Wolf 11 months ago
Am 24.02.2025 um 22:40 hat Thomas Huth geschrieben:
> 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>

Thanks, applied to the block branch.

Kevin
Re: [PATCH] iotests: Limit qsd-migrate to working formats
Posted by Thomas Huth 11 months ago
On 24/02/2025 22.40, Thomas Huth wrote:
> 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>
> ---
>   tests/qemu-iotests/tests/qsd-migrate | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/qemu-iotests/tests/qsd-migrate b/tests/qemu-iotests/tests/qsd-migrate
> index de17562cb06..a4c6592420c 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'])
>   

Ping? (for soft-freeze?)

  Thomas