summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/ash_test/ash-signals/reap1.tests
blob: bf1a1f90825e5fb3b6622fbc58262ab15f72e76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Must not find us alive
{ sleep 2; kill -9 $$; } 2>/dev/null &

sleep 1 &
PID=$!

# We must exit the loop in one second.
# We had bug 5304: builtins never waited for exited children
while kill -0 $PID >/dev/null 2>&1; do
    true
done
echo Ok