Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
5d6b8729ed7335c702022f4f3176573f4cf2cf5a
/
.
/
shell
/
hush_test
/
hush-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