diff options
author | Kevin Wolf | 2017-09-15 18:56:41 +0200 |
---|---|---|
committer | Kevin Wolf | 2017-09-26 14:46:23 +0200 |
commit | 3fb23e07516aae13d1ba566740c1c81ae12184b7 (patch) | |
tree | b392bcfffdc7a00b70e3610d9d6bc4ec81036c08 /tests/qemu-iotests/195.out | |
parent | block: Fix permissions after bdrv_reopen() (diff) | |
download | qemu-3fb23e07516aae13d1ba566740c1c81ae12184b7.tar.gz qemu-3fb23e07516aae13d1ba566740c1c81ae12184b7.tar.xz qemu-3fb23e07516aae13d1ba566740c1c81ae12184b7.zip |
qemu-iotests: Test change-backing-file command
This involves a temporary read-write reopen if the backing file link in
the middle of a backing file chain should be changed and is therefore a
good test for the latest bdrv_reopen() vs. op blockers fixes.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/195.out')
-rw-r--r-- | tests/qemu-iotests/195.out | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/tests/qemu-iotests/195.out b/tests/qemu-iotests/195.out new file mode 100644 index 0000000000..7613575c64 --- /dev/null +++ b/tests/qemu-iotests/195.out @@ -0,0 +1,78 @@ +QA output created by 195 +Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=67108864 +Formatting 'TEST_DIR/t.IMGFMT.mid', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base +Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.mid + +Change backing file of mid (opened read-only) + +Testing: -drive if=none,file=TEST_DIR/t.IMGFMT,backing.node-name=mid +{ + QMP_VERSION +} +{ + "return": { + } +} +{ + "return": { + } +} +{ + "return": { + } +} +{ + "timestamp": { + "seconds": TIMESTAMP, + "microseconds": TIMESTAMP + }, + "event": "SHUTDOWN", + "data": { + "guest": false + } +} + +image: TEST_DIR/t.IMGFMT.mid +file format: IMGFMT +virtual size: 64M (67108864 bytes) +cluster_size: 65536 +backing file: /dev/null +backing file format: IMGFMT + +Change backing file of top (opened writable) + +Formatting 'TEST_DIR/t.IMGFMT.mid', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base +Testing: -drive if=none,file=TEST_DIR/t.IMGFMT,node-name=top +{ + QMP_VERSION +} +{ + "return": { + } +} +{ + "return": { + } +} +{ + "return": { + } +} +{ + "timestamp": { + "seconds": TIMESTAMP, + "microseconds": TIMESTAMP + }, + "event": "SHUTDOWN", + "data": { + "guest": false + } +} + +image: TEST_DIR/t.IMGFMT +file format: IMGFMT +virtual size: 64M (67108864 bytes) +cluster_size: 65536 +backing file: /dev/null +backing file format: IMGFMT +*** done |