Imported from ../bash-2.05.tar.gz.
[platform/upstream/bash.git] / tests / trap.tests
index 66337ba..24f25ab 100644 (file)
@@ -40,9 +40,18 @@ trap '' int
 
 trap
 
+# exit 0 in exit trap should set exit status
+(
+set -e
+trap 'exit 0' EXIT
+false   
+echo bad
+)
+echo $?
+
 # hmmm...should this set the handling to SIG_IGN for children, too?
 trap '' USR2
-./trap.sub1
+./trap1.sub
 
 #
 # show that setting a trap on SIGCHLD is not disastrous.
@@ -56,3 +65,9 @@ sleep 7 & sleep 6 & sleep 5 &
 wait
 
 trap -p SIGCHLD
+
+# Now reset some of the signals the shell handles specially back to
+# their default values (with or without the SIG prefix)
+trap SIGINT QUIT TERM
+
+trap