]> arthur.barton.de Git - bup.git/blobdiff - t/test-fuse.sh
vfs: cache resolve() calls to improve (fuse) performance
[bup.git] / t / test-fuse.sh
index 5949907b86c8c25c0969d06034a27ff62ac94b49..4603e80f79e3b3a57a3073c440fd38d41302ed94 100755 (executable)
@@ -6,6 +6,13 @@ set -o pipefail
 
 unset BLOCKSIZE BLOCK_SIZE DF_BLOCK_SIZE
 
+root_status="$(t/root-status)" || exit $?
+
+if ! bup-python -c 'import fuse' 2> /dev/null; then
+    WVSTART 'unable to import fuse; skipping test'
+    exit 0
+fi
+
 if test -n "$(type -p modprobe)" && ! modprobe fuse; then
     echo 'Unable to load fuse module; skipping dependent tests.' 1>&2
     exit 0
@@ -16,7 +23,7 @@ if ! fusermount -V; then
     exit 0
 fi
 
-if ! groups | grep -q fuse && test "$(t/root-status)" != root; then
+if ! groups | grep -q fuse && test "$root_status" != root; then
     echo 'skipping FUSE tests: you are not root and not in the fuse group'
     exit 0
 fi