From 2b7731938d9279a77d2df62fd9641afc00adbc7c Mon Sep 17 00:00:00 2001 From: Max Reitz Date: Fri, 16 Jun 2017 15:58:47 +0200 Subject: iotests: Add test for failing qemu-img commit Signed-off-by: Max Reitz Message-id: 20170616135847.17726-1-mreitz@redhat.com Reviewed-by: Eric Blake Signed-off-by: Max Reitz --- tests/qemu-iotests/020 | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'tests/qemu-iotests/020') diff --git a/tests/qemu-iotests/020 b/tests/qemu-iotests/020 index 7a11110..cefe3a8 100755 --- a/tests/qemu-iotests/020 +++ b/tests/qemu-iotests/020 @@ -110,6 +110,33 @@ for offset in $TEST_OFFSETS; do io_zero readv $(( offset + 64 * 1024 + 65536 * 4 )) 65536 65536 1 done _check_test_img +_cleanup +TEST_IMG=$TEST_IMG_SAVE + +echo +echo 'Testing failing commit' +echo + +# Create an image with a null backing file to which committing will fail (with +# ENOSPC so we can distinguish the result from some generic EIO which may be +# generated anywhere in the block layer) +_make_test_img -b "json:{'driver': 'raw', + 'file': { + 'driver': 'blkdebug', + 'inject-error': [{ + 'event': 'write_aio', + 'errno': 28, + 'once': true + }], + 'image': { + 'driver': 'null-co' + }}}" + +# Just write anything so committing will not be a no-op +$QEMU_IO -c 'writev 0 64k' "$TEST_IMG" | _filter_qemu_io + +$QEMU_IMG commit "$TEST_IMG" +_cleanup_test_img # success, all done echo "*** done" -- cgit v1.1