From 3b387d81e63893ed3fe3b45e3721fbcfb1c5dde0 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 19 Oct 2022 10:29:05 -0400 Subject: tests: Split test cases into separate files --- tests/posix/xdev.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/posix/xdev.sh (limited to 'tests/posix/xdev.sh') diff --git a/tests/posix/xdev.sh b/tests/posix/xdev.sh new file mode 100644 index 0000000..cbb3347 --- /dev/null +++ b/tests/posix/xdev.sh @@ -0,0 +1,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 -- cgit v1.2.3