aboutsummaryrefslogtreecommitdiffstats
path: root/tests/trap.tests
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2009-01-12 13:36:28 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:47:00 +0000
commit3185942a5234e26ab13fa02f9c51d340cec514f8 (patch)
tree2c6fcd01779faef1f91c5d84d63981ca3479137d /tests/trap.tests
parentf1be666c7d78939ad775078d290bec2758fa29a2 (diff)
downloadandroid_external_bash-3185942a5234e26ab13fa02f9c51d340cec514f8.tar.gz
android_external_bash-3185942a5234e26ab13fa02f9c51d340cec514f8.tar.bz2
android_external_bash-3185942a5234e26ab13fa02f9c51d340cec514f8.zip
Imported from ../bash-4.0-rc1.tar.gz.
Diffstat (limited to 'tests/trap.tests')
-rw-r--r--tests/trap.tests4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/trap.tests b/tests/trap.tests
index 9aac725..83497a3 100644
--- a/tests/trap.tests
+++ b/tests/trap.tests
@@ -75,6 +75,7 @@ trap 'echo caught a child death' SIGCHLD
sleep 7 & sleep 6 & sleep 5 &
+# this will only catch the first, since there's a trap on SIGCHLD
wait
trap -p SIGCHLD
@@ -84,3 +85,6 @@ trap -p SIGCHLD
trap - SIGINT QUIT TERM
trap
+
+trap - SIGCHLD
+wait