diff options
author | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2010-05-04 18:59:08 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-02-22 16:17:03 +0100 |
commit | 596f4f961cd607cda10db17252790370593c7fc2 (patch) | |
tree | fdc8c6366c00ea980db6a974e3ca0d57ed95b500 /tests/qemu-iotests/025.out | |
parent | 908eaf68027509f7bfc207c18770fdfc6144fcd0 (diff) |
qemu-iotests: test bdrv_truncate
This patch adds an image resize grow test to ensure that existing data
is not lost during grow and new space is zeroed.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'tests/qemu-iotests/025.out')
-rw-r--r-- | tests/qemu-iotests/025.out | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/qemu-iotests/025.out b/tests/qemu-iotests/025.out new file mode 100644 index 0000000000..d245727846 --- /dev/null +++ b/tests/qemu-iotests/025.out @@ -0,0 +1,27 @@ +QA output created by 025 +=== Creating image + +Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 + +=== Writing whole image +=== IO: pattern 0xc5 +qemu-io> wrote 134217728/134217728 bytes at offset 0 +128 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +qemu-io> No errors were found on the image. + +=== Resizing image +qemu-io> 128 MiB +qemu-io> qemu-io> 384 MiB +qemu-io> No errors were found on the image. + +=== Verifying image size after reopen +384 MiB + +=== Verifying resized image +=== IO: pattern 0xc5 +qemu-io> read 134217728/134217728 bytes at offset 0 +128 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +qemu-io> === IO: pattern 0 +qemu-io> read 268435456/268435456 bytes at offset 134217728 +256 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +qemu-io> *** done |