diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-19 09:31:33 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-19 09:31:33 -0400 |
commit | c78e5ddfc8aa0a6373b063dd787f416e9de8002e (patch) | |
tree | e0f9ce4ee5ef0a7a39aaf7388eda5290ebc95a06 /tests/common/L_mount.sh | |
parent | b1c6199ad82de2081f18eba931a787a25eb27ea7 (diff) | |
download | bfs-c78e5ddfc8aa0a6373b063dd787f416e9de8002e.tar.xz |
tests: New defer function
Diffstat (limited to 'tests/common/L_mount.sh')
-rw-r--r-- | tests/common/L_mount.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/common/L_mount.sh b/tests/common/L_mount.sh index b04acd0..aaf9069 100644 --- a/tests/common/L_mount.sh +++ b/tests/common/L_mount.sh @@ -4,7 +4,7 @@ clean_scratch mkdir scratch/{foo,mnt} bfs_sudo mount -t tmpfs tmpfs scratch/mnt || skip -trap "bfs_sudo umount scratch/mnt" EXIT +defer bfs_sudo umount scratch/mnt ln -s ../mnt scratch/foo/bar "$XTOUCH" scratch/mnt/baz |