summaryrefslogtreecommitdiffstats
path: root/tests/common/mount.sh
blob: 6131ad4e1e83f43666585367fd0e5726b22ba9ba (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
$TOUCH scratch/foo/bar scratch/mnt/baz

bfs_diff scratch -mount
ret=$?

sudo umount scratch/mnt
return $ret