diff options
author | Vladimir Sementsov-Ogievskiy | 2021-12-23 17:01:43 +0100 |
---|---|---|
committer | Hanna Reitz | 2022-02-01 10:51:39 +0100 |
commit | da87d5f83a23dd9b252fabc7787383ce6d2454a3 (patch) | |
tree | 2bd9e93f1e5b12d9e92f4bf5d3223ead0e7b12be /tests | |
parent | iotests 60: more accurate set dirty bit in qcow2 header (diff) | |
download | qemu-da87d5f83a23dd9b252fabc7787383ce6d2454a3.tar.gz qemu-da87d5f83a23dd9b252fabc7787383ce6d2454a3.tar.xz qemu-da87d5f83a23dd9b252fabc7787383ce6d2454a3.zip |
iotest 214: explicit compression type
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>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/qemu-iotests/214 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/214 b/tests/qemu-iotests/214 index 0889089d81..c66e246ba2 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 |