In certain container environments we may not have FUSE at all, so skip the test in this circumstance too.
Signed-off-by: John Snow <js...@redhat.com> --- tests/qemu-iotests/108 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/qemu-iotests/108 b/tests/qemu-iotests/108 index 9e923d6a59f..e401c5e9933 100755 --- a/tests/qemu-iotests/108 +++ b/tests/qemu-iotests/108 @@ -60,6 +60,12 @@ if sudo -n losetup &>/dev/null; then else loopdev=false + # Check for fuse support in the host environment: + lsmod | grep fuse &>/dev/null; + if [[ $? -ne 0 ]]; then + _notrun 'No Passwordless sudo nor FUSE kernel module' + fi + # QSD --export fuse will either yield "Parameter 'id' is missing" # or "Invalid parameter 'fuse'", depending on whether there is # FUSE support or not. -- 2.34.3