diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-22 16:41:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-22 17:51:36 -0400 |
commit | a2af2746c4686201e2e0796fbdfa115d08727b86 (patch) | |
tree | 4127a4c813de4f4c91c92b0596b468cceac43a7b /tests/posix/unionfs.sh | |
parent | dd8ac68070176343a8781e67de4bbd6a071bb89d (diff) | |
download | bfs-a2af2746c4686201e2e0796fbdfa115d08727b86.tar.xz |
tests: Use test-specific scratch directories
Diffstat (limited to 'tests/posix/unionfs.sh')
-rw-r--r-- | tests/posix/unionfs.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/posix/unionfs.sh b/tests/posix/unionfs.sh index 0f68a43..94d3929 100644 --- a/tests/posix/unionfs.sh +++ b/tests/posix/unionfs.sh @@ -1,6 +1,9 @@ [[ "$UNAME" == *BSD* ]] || skip -clean_scratch -"$XTOUCH" -p scratch/{lower/{foo,bar,baz},upper/{bar,baz/qux}} -bfs_sudo mount -t unionfs -o below scratch/{lower,upper} || skip -defer bfs_sudo umount scratch/upper -bfs_diff scratch + +cd "$TEST" +"$XTOUCH" -p lower/{foo,bar,baz} upper/{bar,baz/qux} + +bfs_sudo mount -t unionfs -o below lower upper || skip +defer bfs_sudo umount upper + +bfs_diff . |