summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2025-05-30 11:28:06 -0400
committerTavian Barnes <tavianator@tavianator.com>2025-05-30 12:09:13 -0400
commit79e86eb3baddb9502abf907a80383d810487602f (patch)
treead85f3b428cf1a28fb541993755bdd440f81c6ab
parentfcad266fd1d1524601cc0d0bd952a0f250946bed (diff)
downloadbfs-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.sh2
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