diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2013-03-18 17:58:54 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-03-19 11:48:37 +0100 |
commit | f95e26ddf526a025aa1334bbe527739397970443 (patch) | |
tree | 776f868d0b0bc66148c13001ec481826ab4ba706 /tests/qemu-iotests/052.out | |
parent | 4d70655bcb852ea0a006d3923f0b0a9c69ff462e (diff) |
qemu-iotests: add 052 BDRV_O_SNAPSHOT test
Check that writes to an image opened with BDRV_O_SNAPSHOT do not modify
the underlying image file.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/052.out')
-rw-r--r-- | tests/qemu-iotests/052.out | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/qemu-iotests/052.out b/tests/qemu-iotests/052.out new file mode 100644 index 0000000000..8617aa2a9e --- /dev/null +++ b/tests/qemu-iotests/052.out @@ -0,0 +1,13 @@ +QA output created by 052 +Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 + +== reading whole image == +read 134217728/134217728 bytes at offset 0 +128 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) + +== writing whole image does not modify image == +wrote 134217728/134217728 bytes at offset 0 +128 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +read 134217728/134217728 bytes at offset 0 +128 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +*** done |