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/common/inum_bind_mount.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/common/inum_bind_mount.sh (limited to 'tests/common/inum_bind_mount.sh') diff --git a/tests/common/inum_bind_mount.sh b/tests/common/inum_bind_mount.sh new file mode 100644 index 0000000..654e762 --- /dev/null +++ b/tests/common/inum_bind_mount.sh @@ -0,0 +1,12 @@ +skip_unless test "$SUDO" +skip_unless test "$UNAME" = "Linux" + +rm -rf scratch/* +$TOUCH scratch/{foo,bar} +sudo mount --bind scratch/{foo,bar} + +bfs_diff scratch -inum "$(inum scratch/bar)" +ret=$? + +sudo umount scratch/bar +return $ret -- cgit v1.2.3