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

rm -rf scratch/*
mkdir scratch/{foo,mnt}
sudo mount -t tmpfs tmpfs scratch/mnt
$TOUCH scratch/foo/bar scratch/mnt/baz

bfs_diff scratch -xdev
ret=$?

sudo umount scratch/mnt
return $ret