diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-10-20 13:21:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-10-20 13:21:41 -0400 |
commit | 55a1ad42bd172aa235015b88c092a225ec7f4862 (patch) | |
tree | ffe5cc53024ee1a8c9a7c7029671bae7852025c9 /tests/gnu/printf_Y_error.sh | |
parent | 4ec966263444dfae8837cd73b980cfdb9aabd93f (diff) | |
download | bfs-55a1ad42bd172aa235015b88c092a225ec7f4862.tar.xz |
tests: Add a helper for cleaning scratch
And try to unmount things if the a test left them mounted.
Diffstat (limited to 'tests/gnu/printf_Y_error.sh')
-rw-r--r-- | tests/gnu/printf_Y_error.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gnu/printf_Y_error.sh b/tests/gnu/printf_Y_error.sh index 933c734..6487711 100644 --- a/tests/gnu/printf_Y_error.sh +++ b/tests/gnu/printf_Y_error.sh @@ -1,4 +1,4 @@ -rm -rf scratch/* +clean_scratch mkdir scratch/foo chmod -x scratch/foo ln -s foo/bar scratch/bar @@ -7,6 +7,6 @@ bfs_diff scratch -printf '(%p) (%l) %y %Y\n' ret=$? chmod +x scratch/foo -rm -rf scratch/* +clean_scratch [ $ret -eq $EX_BFS ] |