aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2020-06-17 12:48:19 +0200
committerKevin Wolf <kwolf@redhat.com>2020-06-17 16:21:21 +0200
commitc7070942c78741a7040655f94ed011c09aa832cf (patch)
treea2591489cfee71fc861db8176d217e623a79ee25 /tests
parentff3caf5af0fd204133668f26fde39b27f86c5d76 (diff)
downloadqemu-c7070942c78741a7040655f94ed011c09aa832cf.zip
qemu-c7070942c78741a7040655f94ed011c09aa832cf.tar.gz
qemu-c7070942c78741a7040655f94ed011c09aa832cf.tar.bz2
iotests/041: Skip test_small_target for qed
qed does not support shrinking images, so the test_small_target method should be skipped to keep 041 passing. Fixes: 16cea4ee1c8e5a69a058e76f426b2e17974d8d7d Signed-off-by: Max Reitz <mreitz@redhat.com> Message-Id: <20200617104822.27525-3-mreitz@redhat.com> Tested-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/qemu-iotests/0412
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/qemu-iotests/041 b/tests/qemu-iotests/041
index 601c756..b843f88 100755
--- a/tests/qemu-iotests/041
+++ b/tests/qemu-iotests/041
@@ -277,6 +277,8 @@ class TestSingleBlockdev(TestSingleDrive):
result = self.vm.run_job('job0')
self.assertEqual(result, 'Source and target image have different sizes')
+ # qed does not support shrinking
+ @iotests.skip_for_formats(('qed'))
def test_small_target(self):
self.do_test_target_size(self.image_len // 2)