diff options
author | Christoph Hellwig | 2009-07-09 15:26:11 +0200 |
---|---|---|
committer | Kevin Wolf | 2012-02-22 16:17:01 +0100 |
commit | e76a8e893d2b005cb966bfbfff4bbba8f7cd302d (patch) | |
tree | 40c926e0514463785690f614a823abc306a134c6 /tests/qemu-iotests/013 | |
parent | qemu-iotests: remove test image after 015 is done (diff) | |
download | qemu-e76a8e893d2b005cb966bfbfff4bbba8f7cd302d.tar.gz qemu-e76a8e893d2b005cb966bfbfff4bbba8f7cd302d.tar.xz qemu-e76a8e893d2b005cb966bfbfff4bbba8f7cd302d.zip |
qemu-iotests: make a few more tests generic
Pretend that a non-implemented check is always successful and thus allow
various tests that were qcow2-specific before to be generic.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/013')
-rwxr-xr-x | tests/qemu-iotests/013 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/013 b/tests/qemu-iotests/013 index ce13218ceb..fda6ce1ffc 100755 --- a/tests/qemu-iotests/013 +++ b/tests/qemu-iotests/013 @@ -42,7 +42,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 . ./common.pattern # much of this could be generic for any format supporting compression. -_supported_fmt qcow2 +_supported_fmt qcow qcow2 _supported_os Linux TEST_OFFSETS="0 4294967296" @@ -66,7 +66,7 @@ echo "Compressing image" echo mv $TEST_IMG $TEST_IMG.orig -$QEMU_IMG convert -f qcow2 -O qcow2 -c $TEST_IMG.orig $TEST_IMG +$QEMU_IMG convert -f $IMGFMT -O $IMGFMT -c $TEST_IMG.orig $TEST_IMG echo "Testing compressed image" echo |