diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-12-16 15:32:04 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-12-16 15:32:04 -0500 |
commit | e50c19f284dad6b4b7b79f91cc8576a97626be8a (patch) | |
tree | 3fc7b15a412d4123d403bca6fdbf3225389926e1 /tests/posix/xdev.sh | |
parent | 7d87b96b421b76e387cee903b7b7c1bc16c54310 (diff) | |
download | bfs-e50c19f284dad6b4b7b79f91cc8576a97626be8a.tar.xz |
tests: Turn on set -e
Diffstat (limited to 'tests/posix/xdev.sh')
-rw-r--r-- | tests/posix/xdev.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/posix/xdev.sh b/tests/posix/xdev.sh index 44e04dd..9d21b14 100644 --- a/tests/posix/xdev.sh +++ b/tests/posix/xdev.sh @@ -3,11 +3,10 @@ test "$UNAME" = "Darwin" && skip clean_scratch mkdir scratch/{foo,mnt} + sudo mount -t tmpfs tmpfs scratch/mnt +trap "sudo umount scratch/mnt" EXIT + "$XTOUCH" scratch/foo/bar scratch/mnt/baz bfs_diff scratch -xdev -ret=$? - -sudo umount scratch/mnt -return $ret |