See https://github.com/takeshibaconsuzuki/qemu/blob/vhdx_4k_rw/tests/qemu-iotests/sample_images/4k.vhdx.bz2 for binary file.
Signed-off-by: Takeshi Suzuki <takeshibaconsuz...@gmail.com> --- tests/qemu-iotests/315 | 65 +++++++++++++++++++ tests/qemu-iotests/315.out | 20 ++++++ tests/qemu-iotests/sample_images/4k.vhdx.bz2 | Bin 0 -> 37834 bytes 3 files changed, 85 insertions(+) create mode 100644 tests/qemu-iotests/315 create mode 100644 tests/qemu-iotests/315.out create mode 100644 tests/qemu-iotests/sample_images/4k.vhdx.bz2 diff --git a/tests/qemu-iotests/315 b/tests/qemu-iotests/315 new file mode 100644 index 0000000000..e5c4978c8c --- /dev/null +++ b/tests/qemu-iotests/315 @@ -0,0 +1,65 @@ +#!/usr/bin/env bash +# group: rw quick +# +# Test VHDX read/write from a 4k sector size sample image created with Hyper-V +# +# Copyright (C) 2013 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + +# creator +owner=takeshibaconsuz...@gmail.com + +seq=`basename $0` +echo "QA output created by $seq" + +status=1 # failure is the default! + +_cleanup() +{ + _cleanup_test_img +} +trap "_cleanup; exit \$status" 0 1 2 3 15 + +# get standard environment, filters and checks +. ./common.rc +. ./common.filter + +_supported_fmt vhdx +_supported_proto generic +_supported_os Linux + +_use_sample_img 4k.vhdx.bz2 + +echo +echo "=== Verify pattern 0xaa, 1024MB - 1088MB ===" +$QEMU_IO -r -c "read -pP 0xaa 1024M 64M" "$TEST_IMG" | _filter_qemu_io +echo +echo "=== Verify pattern 0x00, 1088MB - 1152MB ===" +$QEMU_IO -r -c "read -pP 0x00 1088M 64M" "$TEST_IMG" | _filter_qemu_io + +echo +echo "=== Verify pattern write, 0xbb 1072MB - 1104MB ===" +$QEMU_IO -c "write -pP 0xbb 1072M 32M" "$TEST_IMG" | _filter_qemu_io +# first verify we didn't write where we should not have +$QEMU_IO -r -c "read -pP 0xaa 1024M 48M" "$TEST_IMG" | _filter_qemu_io +$QEMU_IO -r -c "read -pP 0x00 1104M 48M" "$TEST_IMG" | _filter_qemu_io +# now verify what we should have actually written +$QEMU_IO -r -c "read -pP 0xbb 1072M 32M" "$TEST_IMG" | _filter_qemu_io + +# success, all done +echo "*** done" +rm -f $seq.full +status=0 diff --git a/tests/qemu-iotests/315.out b/tests/qemu-iotests/315.out new file mode 100644 index 0000000000..31dd48b223 --- /dev/null +++ b/tests/qemu-iotests/315.out @@ -0,0 +1,20 @@ +QA output created by 315 + +=== Verify pattern 0xaa, 1024MB - 1088MB === +read 67108864/67108864 bytes at offset 1073741824 +64 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) + +=== Verify pattern 0x00, 1088MB - 1152MB === +read 67108864/67108864 bytes at offset 1140850688 +64 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) + +=== Verify pattern write, 0xbb 1072MB - 1104MB === +wrote 33554432/33554432 bytes at offset 1124073472 +32 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +read 50331648/50331648 bytes at offset 1073741824 +48 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +read 50331648/50331648 bytes at offset 1157627904 +48 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +read 33554432/33554432 bytes at offset 1124073472 +32 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +*** done diff --git a/tests/qemu-iotests/sample_images/4k.vhdx.bz2 b/tests/qemu-iotests/sample_images/4k.vhdx.bz2 new file mode 100644 index 0000000000..6cc10919ab Binary files /dev/null and b/tests/qemu-iotests/sample_images/4k.vhdx.bz2 differ -- 2.34.1