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/posix/readdir_error.sh | |
parent | b1c6199ad82de2081f18eba931a787a25eb27ea7 (diff) | |
download | bfs-c78e5ddfc8aa0a6373b063dd787f416e9de8002e.tar.xz |
tests: New defer function
Diffstat (limited to 'tests/posix/readdir_error.sh')
-rw-r--r-- | tests/posix/readdir_error.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/posix/readdir_error.sh b/tests/posix/readdir_error.sh index 9a002a1..fc48eb1 100644 --- a/tests/posix/readdir_error.sh +++ b/tests/posix/readdir_error.sh @@ -13,7 +13,7 @@ mkfifo scratch/{fever,pid,wait,running} ) & # Kill the parent cat on exit -trap "kill -9 %1" EXIT +defer kill -9 %1 # Read the child PID read -r pid <scratch/pid |