diff options
author | Jeff Cody <jcody@redhat.com> | 2017-11-07 08:10:36 -0500 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2017-11-14 18:06:26 +0100 |
commit | 8b2d7c364d9a2491f7501f6688cd722045cf808a (patch) | |
tree | 25a41dc3d3a98e208eaa3a3eb2674611262ac1b3 | |
parent | 1d0f37cf210ae224b98c612981e4df83120b2f0b (diff) | |
download | qemu-8b2d7c364d9a2491f7501f6688cd722045cf808a.zip qemu-8b2d7c364d9a2491f7501f6688cd722045cf808a.tar.gz qemu-8b2d7c364d9a2491f7501f6688cd722045cf808a.tar.bz2 |
qemu-iotests: update unsupported image formats in 194
Test 194 checks for 'luks' to exclude as an unsupported format,
However, most formats are unsupported, due to migration blockers.
Rather than specifying a blacklist of unsupported formats, whitelist
supported formats (specifically, qcow2, qed, raw, dmg).
Tested-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Jeff Cody <jcody@redhat.com>
Message-id: 23ca18c7f843c86a28b1529ca9ac6db4b35ca0e4.1510059970.git.jcody@redhat.com
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: Max Reitz <mreitz@redhat.com>
-rwxr-xr-x | tests/qemu-iotests/194 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/194 b/tests/qemu-iotests/194 index 8d973b4..1d4214a 100755 --- a/tests/qemu-iotests/194 +++ b/tests/qemu-iotests/194 @@ -21,7 +21,7 @@ import iotests -iotests.verify_image_format(unsupported_fmts=['luks']) +iotests.verify_image_format(supported_fmts=['qcow2', 'qed', 'raw', 'dmg']) iotests.verify_platform(['linux']) with iotests.FilePath('source.img') as source_img_path, \ |