hush/shell/ash_test/ash-signals/signal1.tests
Denis Vlasenko 5c13270359 ash: fix testcase to not sleep for whole 10 seconds,
gets annoying pretty fast. Also fix wrong message there.
2008-07-26 13:53:42 +00:00

24 lines
403 B
Plaintext
Executable File

trap "echo got signal" USR1
for try in 1 2 3 4 5; do
kill -USR1 $$
sleep 0.2
echo "sent $try signal"
done &
sleep 2 &
sleeping=true
while $sleeping; do
trap
if wait %%; then
echo "sleep completed"
sleeping=false
elif [ $? == 127 ]; then
echo "BUG: no processes to wait for?!"
sleeping=false
else
echo "wait interrupted"
fi
done