summaryrefslogtreecommitdiffstats
path: root/libsefs/tests/attic/launch-libsefs-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'libsefs/tests/attic/launch-libsefs-tests.sh')
-rwxr-xr-xlibsefs/tests/attic/launch-libsefs-tests.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/libsefs/tests/attic/launch-libsefs-tests.sh b/libsefs/tests/attic/launch-libsefs-tests.sh
new file mode 100755
index 0000000..94bc873
--- /dev/null
+++ b/libsefs/tests/attic/launch-libsefs-tests.sh
@@ -0,0 +1,12 @@
+# Mount the virtual filesystems, execute the the real test, then
+# unmount those filesystems.
+
+mkdir -p non-mls
+mkdir -p mls
+./fuse_non_mls non-mls
+./libsefs-tests
+result=$?
+fusermount -u non-mls
+rmdir non-mls
+rmdir mls
+exit ${result}