diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-12-29 13:05:06 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-12-29 13:05:24 -0500 |
commit | b6859d7a6f7e0b3a3cb70fa75e7e46998e8f0f03 (patch) | |
tree | 9545197e6eec2423d6df2a2244ed759d24e0d9bd /tests/posix/L_xdev.sh | |
parent | 0040a91a6b3a192acfeec0ae1e24516b54ba872a (diff) | |
download | bfs-b6859d7a6f7e0b3a3cb70fa75e7e46998e8f0f03.tar.xz |
tests: Use bfs_sudo wrapper instead of testing $SUDO
Diffstat (limited to 'tests/posix/L_xdev.sh')
-rw-r--r-- | tests/posix/L_xdev.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/posix/L_xdev.sh b/tests/posix/L_xdev.sh index 587c8bb..172ea23 100644 --- a/tests/posix/L_xdev.sh +++ b/tests/posix/L_xdev.sh @@ -1,11 +1,10 @@ -test "$SUDO" || skip test "$UNAME" = "Darwin" && skip clean_scratch mkdir scratch/{foo,mnt} -sudo mount -t tmpfs tmpfs scratch/mnt -trap "sudo umount scratch/mnt" EXIT +bfs_sudo mount -t tmpfs tmpfs scratch/mnt || skip +trap "bfs_sudo umount scratch/mnt" EXIT ln -s ../mnt scratch/foo/bar "$XTOUCH" scratch/mnt/baz |