Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

btest-bg-run-helper: Ignore SIGTERM to self during cleanup #105

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion btest-bg-run-helper
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,21 @@
# Internal helper for btest-bg-run.

cleanup() {
# Ignore SIGTERM during cleanup to prevent terminating
# this process when sending signals to the process group.
trap true SIGTERM

if [ ! -e .exitcode ]; then
echo 15 >.exitcode
kill 0 &>/dev/null

# Send SIGTERM to all processes of the process group.
# We do not use pid 0 here, as the btest-setsid helper
# may have failed and we don't want to send signals to
# processes in a process group we never created.
#
# This will terminate any well-behaved background commands
# that were spawned by the program under test.
kill SIGTERM -${BASHPID} &>/dev/null

if [ -n "$pid" ]; then
kill -0 "$pid" &>/dev/null && kill "$pid"
Expand Down
Loading