summaryrefslogtreecommitdiff
path: root/xfstests/mount.fuse.passthrough
diff options
context:
space:
mode:
Diffstat (limited to 'xfstests/mount.fuse.passthrough')
-rwxr-xr-xxfstests/mount.fuse.passthrough17
1 files changed, 17 insertions, 0 deletions
diff --git a/xfstests/mount.fuse.passthrough b/xfstests/mount.fuse.passthrough
new file mode 100755
index 0000000..47208f8
--- /dev/null
+++ b/xfstests/mount.fuse.passthrough
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+ulimit -n 1048576
+
+# It would be easier if we could just set SCRATCH_DEV and TEST_DEV to the source directory
+# path in local.options. Unfortunately, setting these variables to a path seems get
+# xfstests all worked up (even though it should treat these as opaque values), and it
+# refuses to even start running any tests).
+dev="$1"
+shift
+if [ "$dev" = "${SCRATCH_DEV}" ]; then
+ source="${SCRATCH_SOURCE}"
+else
+ source="${TEST_SOURCE}"
+fi
+
+exec "$PASSTHROUGH_PATH" -o fsname=$dev,allow_other "${source}" "$@"