aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-signals/reap1.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-signals/reap1.tests')
-rwxr-xr-xshell/ash_test/ash-signals/reap1.tests14
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/ash_test/ash-signals/reap1.tests b/shell/ash_test/ash-signals/reap1.tests
new file mode 100755
index 0000000..bf1a1f9
--- /dev/null
+++ b/shell/ash_test/ash-signals/reap1.tests
@@ -0,0 +1,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