diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-05-30 11:28:06 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-05-30 12:09:13 -0400 |
commit | 79e86eb3baddb9502abf907a80383d810487602f (patch) | |
tree | ad85f3b428cf1a28fb541993755bdd440f81c6ab | |
parent | fcad266fd1d1524601cc0d0bd952a0f250946bed (diff) | |
download | bfs-79e86eb3baddb9502abf907a80383d810487602f.tar.xz |
tests/posix/exec_sigmask: Use -exec bash instead of sh
On macOS, sh takes upwards of 20 seconds for some reason.
-rw-r--r-- | tests/posix/exec_sigmask.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/posix/exec_sigmask.sh b/tests/posix/exec_sigmask.sh index d1192a4..4f2c6c9 100644 --- a/tests/posix/exec_sigmask.sh +++ b/tests/posix/exec_sigmask.sh @@ -11,6 +11,6 @@ mkfifo p1 p2 } & # Write the `sh` PID to p1, then hang reading p2 until we're killed -! invoke_bfs p1 -exec sh -c 'echo $$ >p1 && read -r _ <p2' {} + || fail +! invoke_bfs p1 -exec bash -c 'echo $$ >p1 && read -r _ <p2' bash {} + || fail wait |