summaryrefslogtreecommitdiffstats
path: root/tests/qemu-iotests/025
diff options
context:
space:
mode:
authorKevin Wolf2018-03-20 15:31:06 +0100
committerKevin Wolf2018-03-26 12:17:40 +0200
commit633c175f8cccf647f19cf8954dc46b82ce7926e4 (patch)
tree7f75f6b9d1df1540a61f26c438a3ecd472f13959 /tests/qemu-iotests/025
parentqemu-iotests: Test vdi image creation with QMP (diff)
downloadqemu-633c175f8cccf647f19cf8954dc46b82ce7926e4.tar.gz
qemu-633c175f8cccf647f19cf8954dc46b82ce7926e4.tar.xz
qemu-633c175f8cccf647f19cf8954dc46b82ce7926e4.zip
qemu-iotests: Enable 025 for luks
We want to test resizing even for luks. The only change that is needed is to explicitly zero out new space for luks because it's undefined. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/025')
-rwxr-xr-xtests/qemu-iotests/0259
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/qemu-iotests/025 b/tests/qemu-iotests/025
index f5e672e6b3..70dd5f10aa 100755
--- a/tests/qemu-iotests/025
+++ b/tests/qemu-iotests/025
@@ -38,7 +38,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
. ./common.filter
. ./common.pattern
-_supported_fmt raw qcow2 qed
+_supported_fmt raw qcow2 qed luks
_supported_proto file sheepdog rbd nfs
_supported_os Linux
@@ -62,6 +62,13 @@ length
EOF
_check_test_img
+# bdrv_truncate() doesn't zero the new space, so we need to do that explicitly.
+# We still want to test automatic zeroing for other formats even though
+# bdrv_truncate() doesn't guarantee it.
+if [ "$IMGFMT" == "luks" ]; then
+ $QEMU_IO -c "write -z $small_size $((big_size - small_size))" "$TEST_IMG" > /dev/null
+fi
+
echo
echo "=== Verifying image size after reopen"
$QEMU_IO -c "length" "$TEST_IMG"