aboutsummaryrefslogtreecommitdiff
path: root/tests/qemu-iotests
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2022-06-16 10:26:51 -0400
committerHanna Reitz <hreitz@redhat.com>2022-07-12 12:14:56 +0200
commit92529251d2333ea07176cdbd7273483064ba5a7b (patch)
treee32e990859bb08fa079fe082d18c003b6987b8ff /tests/qemu-iotests
parent3698f162323ef6908a658514fbca5cfd8c97f73c (diff)
downloadqemu-92529251d2333ea07176cdbd7273483064ba5a7b.zip
qemu-92529251d2333ea07176cdbd7273483064ba5a7b.tar.gz
qemu-92529251d2333ea07176cdbd7273483064ba5a7b.tar.bz2
tests/qemu-iotests: skip 108 when FUSE is not loaded
In certain container environments we may not have FUSE at all, so skip the test in this circumstance too. Signed-off-by: John Snow <jsnow@redhat.com> Message-Id: <20220616142659.3184115-3-jsnow@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Hanna Reitz <hreitz@redhat.com> Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests')
-rwxr-xr-xtests/qemu-iotests/1085
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/qemu-iotests/108 b/tests/qemu-iotests/108
index 9e923d6..54e935a 100755
--- a/tests/qemu-iotests/108
+++ b/tests/qemu-iotests/108
@@ -60,6 +60,11 @@ if sudo -n losetup &>/dev/null; then
else
loopdev=false
+ # Check for usable FUSE in the host environment:
+ if test ! -c "/dev/fuse"; then
+ _notrun 'No passwordless sudo nor usable /dev/fuse'
+ fi
+
# QSD --export fuse will either yield "Parameter 'id' is missing"
# or "Invalid parameter 'fuse'", depending on whether there is
# FUSE support or not.