Sign in
coral
/
busybox
/
eb7f9acda147543079f261753a11d2afa340fc5e
/
.
/
shell
/
ash_test
/
ash-signals
/
reap1.tests
blob: bf1a1f90825e5fb3b6622fbc58262ab15f72e76c [
file
] [
log
] [
blame
]
#!/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