diff options
Diffstat (limited to 'tests/qemu-iotests/022')
-rwxr-xr-x | tests/qemu-iotests/022 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/qemu-iotests/022 b/tests/qemu-iotests/022 index ca5df99940..ccf2319c4a 100755 --- a/tests/qemu-iotests/022 +++ b/tests/qemu-iotests/022 @@ -46,6 +46,7 @@ _supported_fmt qcow2 _supported_os Linux TEST_OFFSETS="10485760 4294967296" +CLUSTER_SIZE="4096" _make_test_img 6G @@ -54,8 +55,8 @@ echo for offset in $TEST_OFFSETS; do echo "At offset $offset:" - io_test "write -b" $offset - io_test "read -b" $offset + io_test "write -b" $offset $CLUSTER_SIZE 8 + io_test "read -b" $offset $CLUSTER_SIZE 8 _check_test_img done |