aboutsummaryrefslogtreecommitdiff
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
parentbe54d6bc60e611bdc6cc4f962328ba9c7f2ef840 (diff)
downloadbusybox-w32-6214941a3a8a42435780ddeedbbe8937c23918fd.tar.gz
busybox-w32-6214941a3a8a42435780ddeedbbe8937c23918fd.tar.bz2
busybox-w32-6214941a3a8a42435780ddeedbbe8937c23918fd.zip
ash: add testcase for bug 5304
-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 @@
1#!/bin/sh
2
3# Must not find us alive
4{ sleep 2; kill -9 $$; } 2>/dev/null &
5
6sleep 1 &
7PID=$!
8
9# We must exit the loop in one second.
10# We had bug 5304: builtins never waited for exited children
11while kill -0 $PID >/dev/null 2>&1; do
12 true
13done
14echo Ok