1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# GNU Shepherd --- Test 'shepherd' behavior when its socket is deleted.
# Copyright © 2025 Ludovic Courtès <ludo@gnu.org>
#
# This file is part of the GNU Shepherd.
#
# The GNU Shepherd is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at
# your option) any later version.
#
# The GNU Shepherd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with the GNU Shepherd. If not, see <https://www.gnu.org/licenses/>.
shepherd --version
herd --version
SHEPHERD_SOCKET="t-socket-$$"
export SHEPHERD_SOCKET
log="t-log-$$"
pid="t-pid-$$"
trap "cat $log || true; rm -f $SHEPHERD_SOCKET $log;
test -f $pid && kill \`cat $pid\` || true; rm -f $pid" EXIT
rm -f "$pid"
shepherd -I -c /dev/null -l "$log" --pid="$pid" &
until test -f "$pid"; do sleep 0.3; done
kill -0 $(cat "$pid")
herd status
rm "$SHEPHERD_SOCKET"
# Removing the socket should cause 'shepherd' to exit.
while kill -0 $(cat "$pid"); do sleep 1; done
if herd status; then false; else true; fi
grep "Socket '$SHEPHERD_SOCKET' deleted" "$log"
|