Home | History | Annotate | Download | only in memfd
      1 #!/bin/sh
      2 
      3 if test -d "./mnt" ; then
      4 	fusermount -u ./mnt
      5 	rmdir ./mnt
      6 fi
      7 
      8 set -e
      9 
     10 mkdir mnt
     11 ./fuse_mnt ./mnt
     12 ./fuse_test ./mnt/memfd
     13 fusermount -u ./mnt
     14 rmdir ./mnt
     15