summaryrefslogtreecommitdiffstats
path: root/tests/common/mount.sh
blob: f077ea2d221bc876b69f66fc23bc37f3caf4c8cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
test "$SUDO" || skip
test "$UNAME" = "Darwin" && skip

clean_scratch
mkdir scratch/{foo,mnt}
sudo mount -t tmpfs tmpfs scratch/mnt
"$XTOUCH" scratch/foo/bar scratch/mnt/baz

bfs_diff scratch -mount
ret=$?

sudo umount scratch/mnt
return $ret