5435e8a804
Backport patches related with iotest from upstream * Patches added: block-backend-Retain-permissions-after-m.patch iotest-065-explicit-compression-type.patch iotest-214-explicit-compression-type.patch iotest-302-use-img_info_log-helper.patch iotest-303-explicit-compression-type.patch iotest-39-use-_qcow2_dump_header.patch iotests-60-more-accurate-set-dirty-bit-i.patch iotests-bash-tests-filter-compression-ty.patch iotests-common.rc-introduce-_qcow2_dump_.patch iotests-declare-lack-of-support-for-comp.patch iotests-drop-qemu_img_verbose-helper.patch iotests-massive-use-_qcow2_dump_header.patch iotests-MRCE-Write-data-to-source.patch iotests.py-filter-out-successful-output-.patch iotests.py-img_info_log-rename-imgopts-a.patch iotests.py-implement-unsupported_imgopts.patch iotests.py-qemu_img-create-support-IMGOP.patch iotests.py-rewrite-default-luks-support-.patch iotests-specify-some-unsupported_imgopts.patch qcow2-simple-case-support-for-downgradin.patch tests-qemu-iotests-Fix-051-for-binaries-.patch OBS-URL: https://build.opensuse.org/request/show/955876 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=690
33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
|
Date: Thu, 23 Dec 2021 17:01:43 +0100
|
|
Subject: iotest 214: explicit compression type
|
|
|
|
Git-commit: da87d5f83a23dd9b252fabc7787383ce6d2454a3
|
|
|
|
The test-case "Corrupted size field in compressed cluster descriptor"
|
|
heavily depends on zlib compression type. So, make it explicit. This
|
|
way test passes with IMGOPTS='compression_type=zstd'.
|
|
|
|
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
|
Reviewed-by: Max Reitz <mreitz@redhat.com>
|
|
Message-Id: <20211223160144.1097696-19-vsementsov@virtuozzo.com>
|
|
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
|
|
Signed-off-by: Li Zhang <lizhang@suse.de>
|
|
---
|
|
tests/qemu-iotests/214 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/qemu-iotests/214 b/tests/qemu-iotests/214
|
|
index 0889089d81cfa9375b5f4d30bfd5..c66e246ba248e221e59743b247e3 100755
|
|
--- a/tests/qemu-iotests/214
|
|
+++ b/tests/qemu-iotests/214
|
|
@@ -51,7 +51,7 @@ echo
|
|
# The L2 entries of the two compressed clusters are located at
|
|
# 0x800000 and 0x800008, their original values are 0x4008000000a00000
|
|
# and 0x4008000000a00802 (5 sectors for compressed data each).
|
|
-_make_test_img 8M -o cluster_size=2M
|
|
+_make_test_img 8M -o cluster_size=2M,compression_type=zlib
|
|
$QEMU_IO -c "write -c -P 0x11 0 2M" -c "write -c -P 0x11 2M 2M" "$TEST_IMG" \
|
|
2>&1 | _filter_qemu_io | _filter_testdir
|
|
|