aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-signals
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-10-27 14:33:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-10-27 14:33:03 +0000
commit6214941a3a8a42435780ddeedbbe8937c23918fd (patch)
tree9ee3bb7f126a6e7cb0cc5e432007d92aeecf6dea /shell/ash_test/ash-signals
parentbe54d6bc60e611bdc6cc4f962328ba9c7f2ef840 (diff)
downloadbusybox-6214941a3a8a42435780ddeedbbe8937c23918fd.tar.gz
ash: add testcase for bug 5304
Diffstat (limited to 'shell/ash_test/ash-signals')
-rw-r--r--shell/ash_test/ash-signals/reap1.right1
-rwxr-xr-xshell/ash_test/ash-signals/reap1.tests14
2 files changed, 15 insertions, 0 deletions
diff --git a/shell/ash_test/ash-signals/reap1.right b/shell/ash_test/ash-signals/reap1.right
new file mode 100644
index 000000000..7326d9603
--- /dev/null
+++ b/shell/ash_test/ash-signals/reap1.right
@@ -0,0 +1 @@
+Ok
diff --git a/shell/ash_test/ash-signals/reap1.tests b/shell/ash_test/ash-signals/reap1.tests
new file mode 100755
index 000000000..bf1a1f908
--- /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