diff options
author | Fam Zheng <famz@redhat.com> | 2013-12-04 09:07:03 +0800 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-12-04 14:31:39 +0100 |
commit | 34602dd6424c4f1cc414ba672f4f430182b5d9f2 (patch) | |
tree | dd391c1aa5ebb9170f39c2dbde6ac6142d617fd6 /tests/qemu-iotests/048 | |
parent | 236c796432bed70e442aa617807a528c18b1ebd3 (diff) | |
download | qemu-34602dd6424c4f1cc414ba672f4f430182b5d9f2.zip qemu-34602dd6424c4f1cc414ba672f4f430182b5d9f2.tar.gz qemu-34602dd6424c4f1cc414ba672f4f430182b5d9f2.tar.bz2 |
qemu-iotests: Split qcow2 only cases in 048
Format "raw" doesn't always work on certain file systems (e.g. tmpfs).
Use qcow2 to make the allocation status explicit and split into a new
case.
[Resolved merge conflict due to "qemu-io> " prompt filter, added 074 to
group file, and fixed up s/048/074/ copy-paste mistake.
--Stefan]
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/048')
-rwxr-xr-x | tests/qemu-iotests/048 | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/qemu-iotests/048 b/tests/qemu-iotests/048 index 9def7fc..65da46d 100755 --- a/tests/qemu-iotests/048 +++ b/tests/qemu-iotests/048 @@ -81,32 +81,5 @@ cp "$TEST_IMG" "$TEST_IMG2" io_pattern write 512 512 0 1 101 _compare -# Test cluster allocated in one, with IO error -cat > "$TEST_DIR/blkdebug.conf"<<EOF -[inject-error] -event = "read_aio" -errno = "5" -once ="off" -EOF -_make_test_img $size -cp "$TEST_IMG" "$TEST_IMG2" -io_pattern write 512 512 0 1 102 -TEST_IMG="blkdebug:$TEST_DIR/blkdebug.conf:$TEST_IMG" _compare 2>&1 |\ - _filter_testdir | _filter_imgfmt - -# Test cluster allocated in one, with different sizes and IO error in the part -# that exists only in one image -cat > "$TEST_DIR/blkdebug.conf"<<EOF -[inject-error] -event = "read_aio" -errno = "5" -once ="off" -EOF -_make_test_img $size -TEST_IMG="$TEST_IMG2" _make_test_img 0 -io_pattern write 512 512 0 1 102 -TEST_IMG="blkdebug:$TEST_DIR/blkdebug.conf:$TEST_IMG" _compare 2>&1 |\ - _filter_testdir | _filter_imgfmt - # Cleanup status=0 |