Namespaces are disabled by default (can be enabled at runtime with a flag). OSX compa...
[rrq/fuse_xattrs.git] / run_tests.sh
index 1f2fbf14f4f3e3f6e0e4db7ae2e04c07fd43bd27..5a0b4a0ffb64c2565b27d04cc88a01c11df281f5 100755 (executable)
@@ -2,7 +2,7 @@
 
 mkdir -p test/mount
 mkdir -p test/source
-./fuse_xattrs -o nonempty test/source/ test/mount/
+./fuse_xattrs -o enable_namespaces test/source/ test/mount/
 
 if [ $? -ne 0 ]; then
     echo "Error mounting the filesystem."
@@ -19,7 +19,12 @@ set -e
 
 popd
 
-fusermount -zu test/mount
+if [[ "$OSTYPE" == "darwin"* ]]; then
+    umount test/mount
+else
+    fusermount -uz test/mount
+fi
+
 rm -d test/source
 rm -d test/mount