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

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