diff options
author | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-07-09 10:25:27 +0200 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-07-09 18:04:43 +0200 |
commit | 67ce439e2d73e73426b68695288729c6ffd63e5b (patch) | |
tree | 9009eacd44a5eaba46009ddf864c5c7c03840c09 /xfstests/mount.fuse.passthrough | |
parent | 170edc6a8ef0ce8b7aa2b498b101f0de29b35757 (diff) | |
download | libfuse-67ce439e2d73e73426b68695288729c6ffd63e5b.tar.gz |
xfstests: Add '-odev' to passthrough mount options
generic/434 and generic/184 are testing device files and fail
because fuse sets 'nodev' by default.
Diffstat (limited to 'xfstests/mount.fuse.passthrough')
-rwxr-xr-x | xfstests/mount.fuse.passthrough | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfstests/mount.fuse.passthrough b/xfstests/mount.fuse.passthrough index e07430f..94c45e5 100755 --- a/xfstests/mount.fuse.passthrough +++ b/xfstests/mount.fuse.passthrough @@ -37,4 +37,4 @@ fi #echo "EXTRA_BIN_OPTIONS='${EXTRA_BIN_OPTIONS}'" -exec "$PASSTHROUGH_PATH" ${EXTRA_BIN_OPTIONS} -o fsname=$dev,allow_other $source "$mnt" -o "$mntopts" "$@" +exec "$PASSTHROUGH_PATH" ${EXTRA_BIN_OPTIONS} -o fsname=$dev,allow_other,dev $source "$mnt" -o "$mntopts" "$@" |