]> git.proxmox.com Git - mirror_qemu.git/commitdiff
iotests/055: skip vmdk target tests if vmdk is not whitelisted
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Thu, 30 Apr 2020 12:47:11 +0000 (15:47 +0300)
committerKevin Wolf <kwolf@redhat.com>
Fri, 8 May 2020 11:26:35 +0000 (13:26 +0200)
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200430124713.3067-7-vsementsov@virtuozzo.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
tests/qemu-iotests/055

index d9e89851671064aec6b7cd4e7dda566c2f8b5ab6..e250f798f90130cfde15618ee553753fa7dcb23e 100755 (executable)
@@ -566,6 +566,10 @@ class TestCompressedToQcow2(iotests.QMPTestCase):
 class TestCompressedToVmdk(TestCompressedToQcow2):
     target_fmt = {'type': 'vmdk', 'args': ('-o', 'subformat=streamOptimized')}
 
+    @iotests.skip_if_unsupported(['vmdk'])
+    def setUp(self):
+        pass
+
 
 if __name__ == '__main__':
     iotests.main(supported_fmts=['raw', 'qcow2'],