summaryrefslogtreecommitdiffstats
path: root/libsefs/tests/attic/launch-libsefs-tests.sh
blob: 94bc87376f6b16c1b6515ead76f624f90fa67809 (plain)
1
2
3
4
5
6
7
8
9
10
11
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}