features: Now it will add xattrs support to an specific directory (instead of the...
[rrq/fuse_xattrs.git] / run_tests.sh
index a260b52fdc18019a7ba9b44b5ca42104b66f293e..a3dcb365972f9e1ea686dae32d21ce07e5bc0716 100755 (executable)
@@ -1,7 +1,8 @@
 #!/usr/bin/env bash
 
 mkdir -p test/mount
-./fuse_xattrs -o nonempty test/mount/
+mkdir -p test/source
+./fuse_xattrs -o nonempty test/source/ test/mount/
 
 pushd test
 
@@ -13,6 +14,7 @@ set -e
 popd
 
 fusermount -zu test/mount
+rm -d test/source
 rm -d test/mount
 
 exit ${RESULT}