Sign in
coral
/
busybox
/
198b02f7dd61c6cb9fd4c379dc56edcf537a7ee1
/
.
/
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