diff options
author | Max Reitz <mreitz@redhat.com> | 2020-10-27 20:05:59 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2020-12-11 17:52:40 +0100 |
commit | 57284d2ada481fe557c9a2f00228eca2a83e1d60 (patch) | |
tree | 5f38650160734b450758293853be663d408aad05 /tests/qemu-iotests/031 | |
parent | f96ac06bf076db4f7c97509446b409d0d6d06276 (diff) | |
download | qemu-57284d2ada481fe557c9a2f00228eca2a83e1d60.zip qemu-57284d2ada481fe557c9a2f00228eca2a83e1d60.tar.gz qemu-57284d2ada481fe557c9a2f00228eca2a83e1d60.tar.bz2 |
iotests: Enable fuse for many tests
Many tests (that do not support generic protocols) can run just fine
with FUSE-exported images, so allow them to. Note that this is no
attempt at being definitely complete. There are some tests that might
be modified to run on FUSE, but this patch still skips them. This patch
only tries to pick the rather low-hanging fruits.
Note that 221 and 250 only pass when .lseek is correctly implemented,
which is only possible with a libfuse that is 3.8 or newer.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20201027190600.192171-20-mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/031')
-rwxr-xr-x | tests/qemu-iotests/031 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/031 b/tests/qemu-iotests/031 index 646ecd5..2bcbc58 100755 --- a/tests/qemu-iotests/031 +++ b/tests/qemu-iotests/031 @@ -39,7 +39,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 # This tests qcow2-specific low-level functionality _supported_fmt qcow2 -_supported_proto file +_supported_proto file fuse # We want to test compat=0.10, which does not support external data # files or refcount widths other than 16 _unsupported_imgopts data_file 'refcount_bits=\([^1]\|.\([^6]\|$\)\)' |