[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 12/14] iotests 60: more accurate set dirty bit in qcow2 header
From: |
Vladimir Sementsov-Ogievskiy |
Subject: |
[PATCH 12/14] iotests 60: more accurate set dirty bit in qcow2 header |
Date: |
Mon, 5 Jul 2021 12:15:47 +0300 |
Don't touch other incompatible bits, like compression-type. This makes
the test pass with IMGOPTS='compression_type=zstd'.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
---
tests/qemu-iotests/060 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qemu-iotests/060 b/tests/qemu-iotests/060
index d1e3204d4e..df87d600f7 100755
--- a/tests/qemu-iotests/060
+++ b/tests/qemu-iotests/060
@@ -326,7 +326,7 @@ _make_test_img 64M
# Let the refblock appear unaligned
poke_file "$TEST_IMG" "$rt_offset" "\x00\x00\x00\x00\xff\xff\x2a\x00"
# Mark the image dirty, thus forcing an automatic check when opening it
-poke_file "$TEST_IMG" 72 "\x00\x00\x00\x00\x00\x00\x00\x01"
+$PYTHON qcow2.py "$TEST_IMG" set-feature-bit incompatible 0
# Open the image (qemu should refuse to do so)
$QEMU_IO -c close "$TEST_IMG" 2>&1 | _filter_testdir | _filter_imgfmt
--
2.29.2
- Re: [PATCH 02/14] iotests.py: qemu_img*("create"): support IMGOPTS='compression_type=zstd', (continued)
[PATCH 07/14] qcow2: simple case support for downgrading of qcow2 images with zstd, Vladimir Sementsov-Ogievskiy, 2021/07/05
[PATCH 03/14] iotest 303: explicit compression type, Vladimir Sementsov-Ogievskiy, 2021/07/05
[PATCH 08/14] iotests/common.rc: _make_test_img(): smarter compressiont_type handling, Vladimir Sementsov-Ogievskiy, 2021/07/05
[PATCH 12/14] iotests 60: more accurate set dirty bit in qcow2 header,
Vladimir Sementsov-Ogievskiy <=
[PATCH 13/14] iotest 39: use _qcow2_dump_header, Vladimir Sementsov-Ogievskiy, 2021/07/05
[PATCH 09/14] iotests/common.rc: introduce _qcow2_dump_header helper, Vladimir Sementsov-Ogievskiy, 2021/07/05
[PATCH 14/14] iotest 214: explicit compression type, Vladimir Sementsov-Ogievskiy, 2021/07/05
[PATCH 10/14] iotests: massive use _qcow2_dump_header, Vladimir Sementsov-Ogievskiy, 2021/07/05
[PATCH 11/14] iotests: bash tests: filter compression type, Vladimir Sementsov-Ogievskiy, 2021/07/05